/* =========================================================
   BYTC MOBILE APP — PREMIUM UI PASS
   Prototype only — no API/database logic
   ========================================================= */

:root{
  --p-navy-950:#061426;
  --p-navy-900:#081b33;
  --p-navy-850:#0b2444;
  --p-navy-800:#0d315c;
  --p-blue:#1357a6;
  --p-blue-soft:#eaf2fd;

  --p-gold-700:#a97812;
  --p-gold-600:#c89420;
  --p-gold-500:#e0b33c;
  --p-gold-300:#f4d77c;
  --p-gold-100:#fff7dc;

  --p-green:#129165;
  --p-red:#d3414d;

  --p-bg:#f3f6fa;
  --p-card:#ffffff;
  --p-text:#13233a;
  --p-muted:#68778b;
  --p-line:#dce5ef;

  --p-shadow-sm:0 5px 18px rgba(8,27,51,.07);
  --p-shadow:0 14px 38px rgba(8,27,51,.12);
  --p-shadow-lg:0 26px 65px rgba(8,27,51,.19);
}

/* ---------- GLOBAL ---------- */

html{
  background:#e7edf5;
}

body{
  background:
    radial-gradient(circle at 12% 8%,rgba(19,87,166,.08),transparent 28%),
    radial-gradient(circle at 88% 86%,rgba(224,179,60,.08),transparent 30%),
    #e7edf5;
  color:var(--p-text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

button,
input,
select,
textarea{
  -webkit-tap-highlight-color:transparent;
}

button{
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    filter .16s ease;
}

button:active{
  transform:scale(.975);
}

#app{
  background:var(--p-bg);
}

/* ---------- DESKTOP DEVICE PRESENTATION ---------- */

@media (min-width:700px){
  body{
    padding:24px 0 40px;
  }

  #app{
    min-height:900px;
    border-radius:34px;
    border:1px solid rgba(255,255,255,.95);
    box-shadow:
      0 34px 80px rgba(8,27,51,.22),
      0 0 0 7px rgba(255,255,255,.58);
  }
}

/* ---------- SPLASH ---------- */

.splash{
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 50% 30%,rgba(224,179,60,.17),transparent 26%),
    radial-gradient(circle at 15% 90%,rgba(19,87,166,.25),transparent 35%),
    linear-gradient(155deg,#040e1c 0%,#092345 55%,#06172b 100%);
}

.splash:before,
.splash:after{
  content:"";
  position:absolute;
  border:1px solid rgba(244,215,124,.12);
  border-radius:50%;
  z-index:-1;
}

.splash:before{
  width:360px;
  height:360px;
  top:-130px;
  right:-180px;
}

.splash:after{
  width:430px;
  height:430px;
  bottom:-260px;
  left:-180px;
}

.brand-mark{
  width:136px;
  height:136px;
  border:none;
  padding:9px;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(145deg,var(--p-gold-300),var(--p-gold-700)) border-box;
  border:3px solid transparent;
  box-shadow:
    0 24px 55px rgba(0,0,0,.28),
    0 0 50px rgba(224,179,60,.14);
}

.brand-ring{
  width:112px;
  height:112px;
  background:#fff;
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(8,27,51,.06);
}

.brand-ring img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:5px;
}

.splash h1{
  font-size:48px;
  letter-spacing:5px;
  text-shadow:0 5px 25px rgba(0,0,0,.28);
}

.splash h2{
  max-width:340px;
  line-height:1.25;
  font-weight:750;
}

.splash p{
  letter-spacing:.4px;
}

.loader{
  height:4px;
  width:160px;
  background:rgba(255,255,255,.12);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);
}

/* ---------- LOGIN ---------- */

.login-shell{
  position:relative;
  overflow:hidden;
  padding-top:52px;
  background:
    radial-gradient(circle at 100% 0%,rgba(19,87,166,.11),transparent 28%),
    radial-gradient(circle at 0% 100%,rgba(224,179,60,.10),transparent 34%),
    linear-gradient(180deg,#ffffff,#f7f9fc);
}

.login-shell:before{
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  right:-145px;
  top:80px;
  border-radius:50%;
  border:38px solid rgba(19,87,166,.025);
}

.login-shell:after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  left:-150px;
  bottom:60px;
  border-radius:50%;
  border:34px solid rgba(224,179,60,.035);
}

.login-brand{
  position:relative;
  z-index:2;
}

.mini-logo{
  width:91px;
  height:91px;
  background:#fff;
  padding:5px;
  border:2px solid #f1d477;
  box-shadow:
    0 16px 35px rgba(8,27,51,.12),
    0 0 0 6px rgba(255,247,220,.72);
}

.mini-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.login-brand h1{
  margin-top:18px;
  font-size:31px;
  letter-spacing:1.2px;
}

.login-brand p{
  font-size:13px;
  letter-spacing:.15px;
}

.login-card{
  position:relative;
  z-index:2;
  border-radius:24px;
  border:1px solid rgba(203,214,226,.78);
  padding:24px;
  box-shadow:var(--p-shadow);
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.95));
}

.login-card:before{
  content:"";
  position:absolute;
  left:22px;
  right:22px;
  top:0;
  height:3px;
  border-radius:0 0 99px 99px;
  background:linear-gradient(90deg,transparent,var(--p-gold-500),transparent);
}

.login-card h2{
  font-size:22px;
  color:var(--p-navy-900);
}

.input-wrap{
  min-height:55px;
  border-color:#d5e0ec;
  border-radius:14px;
  background:#fbfcfe;
  transition:.18s ease;
}

.input-wrap:focus-within{
  background:#fff;
  border-color:#6d9bd0;
  box-shadow:0 0 0 4px rgba(19,87,166,.08);
}

.input-wrap span{
  display:grid;
  place-items:center;
  width:25px;
}

.login-options{
  margin-top:17px;
}

.primary{
  min-height:52px;
  background:
    linear-gradient(135deg,#071a31 0%,#0d3769 60%,#1357a6 100%);
  box-shadow:0 10px 22px rgba(8,49,92,.20);
  letter-spacing:.15px;
}

.primary:hover{
  filter:brightness(1.04);
  box-shadow:0 14px 28px rgba(8,49,92,.25);
}

.secure-note{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
}

/* ---------- DASHBOARD HEADER ---------- */

.topbar.dark{
  position:relative;
  overflow:hidden;
  min-height:140px;
  padding:24px 20px 31px;
  background:
    radial-gradient(circle at 100% -10%,rgba(244,215,124,.22),transparent 38%),
    linear-gradient(135deg,#061426 0%,#0b2d56 58%,#104681 100%);
}

.topbar.dark:after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  right:-105px;
  bottom:-130px;
  border-radius:50%;
  border:26px solid rgba(255,255,255,.035);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--p-gold-300);
  font-weight:800;
  font-size:10px!important;
  letter-spacing:1.4px;
  opacity:1!important;
}

.eyebrow:before{
  content:"";
  width:17px;
  height:2px;
  border-radius:99px;
  background:var(--p-gold-500);
}

.topbar h2{
  font-size:22px;
  letter-spacing:-.2px;
  margin-top:7px;
}

.topbar p{
  font-size:12px;
  margin-top:5px;
}

.top-actions{
  position:relative;
  z-index:2;
}

.top-actions button{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.17);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
  color:white;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
}

.top-actions .avatar{
  border:2px solid rgba(255,255,255,.65);
  background:
    linear-gradient(145deg,var(--p-gold-300),var(--p-gold-600))!important;
}

/* ---------- DASHBOARD CONTENT ---------- */

#screen-dashboard .content{
  position:relative;
  margin-top:-13px;
  padding-top:0;
}

.hero-action{
  position:relative;
  overflow:hidden;
  border-radius:21px;
  min-height:98px;
  padding:18px;
  color:#09213e;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,255,255,.42),transparent 34%),
    linear-gradient(135deg,#f8dc7c 0%,#e5b941 48%,#c7931c 100%);
  box-shadow:
    0 15px 30px rgba(169,120,18,.23),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.hero-action:after{
  content:"";
  position:absolute;
  width:130px;
  height:130px;
  right:-75px;
  bottom:-85px;
  border-radius:50%;
  border:20px solid rgba(255,255,255,.15);
}

.hero-plus{
  position:relative;
  z-index:1;
  min-width:60px;
  height:60px;
  background:
    linear-gradient(145deg,#071629,#0d3769);
  box-shadow:0 10px 22px rgba(7,22,41,.24);
}

.hero-action>div:last-child{
  position:relative;
  z-index:1;
}

.hero-action small{
  letter-spacing:1.5px;
  font-weight:800;
}

.hero-action strong{
  font-size:18px;
}

.stats-grid{
  gap:11px;
}

.stats-grid article{
  position:relative;
  overflow:hidden;
  min-height:88px;
  padding:16px;
  border-radius:17px;
  border:1px solid rgba(215,225,236,.88);
  box-shadow:var(--p-shadow-sm);
}

.stats-grid article:after{
  content:"";
  position:absolute;
  right:-23px;
  top:-23px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:rgba(19,87,166,.035);
}

.stats-grid strong{
  position:relative;
  z-index:1;
  font-size:26px;
  letter-spacing:-.5px;
}

.stats-grid span{
  position:relative;
  z-index:1;
}

/* ---------- SECTION TITLES ---------- */

.section-head{
  margin-top:26px;
}

.section-head h3{
  color:var(--p-navy-900);
  font-size:16px;
  letter-spacing:-.1px;
}

/* ---------- QUICK ACTIONS ---------- */

.quick-grid{
  gap:10px;
}

.quick-grid button{
  min-height:86px;
  border-radius:17px;
  border:1px solid rgba(215,225,236,.92);
  box-shadow:0 5px 15px rgba(8,27,51,.05);
  background:
    linear-gradient(180deg,#fff,#fbfcfe);
  padding:10px 5px;
}

.quick-grid button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(8,27,51,.09);
}

.qa-icon{
  width:34px;
  height:34px;
  margin:0 auto;
  border-radius:10px;
  display:grid;
  place-items:center;
  color:var(--p-blue);
  background:var(--p-blue-soft);
}

.quick-grid button:nth-child(2) .qa-icon,
.quick-grid button:nth-child(4) .qa-icon{
  color:#0d8a62;
  background:#e7f7f0;
}

.quick-grid button:nth-child(5) .qa-icon,
.quick-grid button:nth-child(8) .qa-icon{
  color:#7357c7;
  background:#f0ecff;
}

.quick-grid button:nth-child(6) .qa-icon{
  color:#a56d0a;
  background:#fff5dd;
}

.quick-grid button:nth-child(7) .qa-icon{
  color:#c94350;
  background:#fff0f2;
}

.qa-icon svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.quick-grid span:last-child{
  margin-top:7px;
  font-weight:750;
}

/* ---------- STUDENT CARDS ---------- */

.student-mini,
.student-row{
  border-radius:17px;
  border:1px solid rgba(215,225,236,.90);
  box-shadow:0 5px 16px rgba(8,27,51,.045);
}

.student-mini{
  padding:13px;
}

.student-avatar{
  background:
    linear-gradient(145deg,#edf4fd,#d6e6f8);
  box-shadow:inset 0 0 0 1px rgba(19,87,166,.05);
}

.status{
  font-weight:800!important;
}

.active-status{
  background:#e3f8ef;
}

.pending-status{
  background:#fff3d6;
}

/* ---------- BOTTOM NAV ---------- */

.bottom-nav{
  height:76px;
  padding-top:7px;
  background:
    linear-gradient(180deg,#09203b,#06162a);
  border-top:1px solid rgba(255,255,255,.06);
  box-shadow:0 -10px 30px rgba(8,27,51,.10);
}

.bottom-nav button{
  color:#9eafc4;
}

.bottom-nav button svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.bottom-nav .nav-active{
  color:var(--p-gold-300);
}

.bottom-nav .nav-add{
  width:59px;
  height:59px;
  border:3px solid var(--p-navy-950);
  background:
    linear-gradient(145deg,#f4d77c,#d9a827);
  box-shadow:
    0 10px 25px rgba(201,148,32,.40),
    inset 0 1px 0 rgba(255,255,255,.65);
}

/* ---------- APP HEADERS ---------- */

.simple-header{
  min-height:77px;
  padding:17px 18px;
  border-bottom:1px solid rgba(215,225,236,.85);
  box-shadow:0 6px 18px rgba(8,27,51,.035);
}

.simple-header h2{
  font-size:18px;
  color:var(--p-navy-900);
}

.back-btn{
  border-radius:12px;
  color:var(--p-navy-900);
  background:#f8fafc;
}

/* ---------- REGISTRATION STEPPER ---------- */

.stepper{
  position:relative;
  padding:18px 24px;
  border-bottom:1px solid #edf1f5;
}

.stepper:before{
  content:"";
  position:absolute;
  left:38px;
  right:38px;
  top:32px;
  height:2px;
  background:#e6ebf1;
}

.step-dot{
  position:relative;
  z-index:1;
  width:30px;
  height:30px;
  border:3px solid white;
  box-shadow:0 0 0 1px #e1e8f0;
}

.step-dot.current{
  background:var(--p-gold-500);
  color:var(--p-navy-900);
  box-shadow:
    0 0 0 1px var(--p-gold-500),
    0 5px 14px rgba(224,179,60,.28);
}

.step-dot.done{
  background:var(--p-green);
}

/* ---------- REGISTRATION FORM ---------- */

.form-content{
  background:
    linear-gradient(180deg,#f5f8fb,#f2f5f9);
}

.step-title{
  margin-bottom:3px;
}

.step-title small{
  letter-spacing:1.3px;
  color:var(--p-gold-700);
}

.step-title h3{
  font-size:20px;
  color:var(--p-navy-900);
}

.photo-upload{
  border-radius:18px;
  padding:16px;
  box-shadow:var(--p-shadow-sm);
}

.photo-placeholder{
  width:76px;
  height:76px;
  background:
    linear-gradient(145deg,#edf3fa,#dfe9f4);
}

.form-content label{
  color:#35455b;
  margin-top:17px;
}

.form-content input,
.form-content select,
.form-content textarea{
  min-height:53px;
  border-radius:13px;
  border:1px solid #d7e1ec;
  background:rgba(255,255,255,.96);
}

.form-content input:focus,
.form-content select:focus,
.form-content textarea:focus{
  border-color:#5b8fc8;
  box-shadow:0 0 0 4px rgba(19,87,166,.075);
}

.upload-card,
.review-card{
  border-radius:17px;
  box-shadow:var(--p-shadow-sm);
}

.form-footer{
  min-height:76px;
  padding:12px 17px 14px;
  box-shadow:0 -10px 28px rgba(8,27,51,.06);
}

/* ---------- SUCCESS ---------- */

.success-screen{
  background:
    radial-gradient(circle at 50% 10%,rgba(18,145,101,.08),transparent 27%),
    linear-gradient(180deg,#fff,#f6f9fc);
}

.success-icon{
  width:91px;
  height:91px;
  border:6px solid #e9f8f2;
  box-shadow:
    0 18px 38px rgba(18,145,101,.25),
    0 0 0 1px rgba(18,145,101,.10);
}

.success-card{
  border-radius:21px;
  background:#fff;
  box-shadow:var(--p-shadow);
}

/* ---------- STUDENT DIRECTORY ---------- */

.search-input{
  min-height:54px;
  border-radius:15px;
  box-shadow:0 4px 14px rgba(8,27,51,.035);
}

.filter{
  border-radius:12px;
  padding:9px 13px;
}

.active-filter{
  background:
    linear-gradient(135deg,var(--p-navy-900),var(--p-blue));
}

.student-row{
  padding:13px;
}

.floating-add{
  width:61px;
  height:61px;
  border:3px solid white;
  background:
    linear-gradient(145deg,#f4d77c,#d8a524);
}

/* ---------- PROFILE ---------- */

.profile-head{
  border-radius:20px;
  box-shadow:var(--p-shadow-sm);
  background:
    radial-gradient(circle at 100% 0%,rgba(224,179,60,.08),transparent 30%),
    #fff;
}

.tab-row{
  padding:5px;
  border-radius:14px;
}

.tab-row .tab-active{
  color:var(--p-navy-900);
  box-shadow:0 5px 12px rgba(8,27,51,.08);
}

.detail-card{
  border-radius:18px;
  box-shadow:var(--p-shadow-sm);
}

/* ---------- SVG HELPER ---------- */

.ui-svg{
  width:19px;
  height:19px;
  display:inline-block;
  vertical-align:middle;
}

.ui-svg svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* ---------- MOBILE TRUE FULL SCREEN ---------- */

@media (max-width:699px){
  html,body,#app{
    width:100%;
    max-width:none;
    min-height:100%;
    margin:0;
  }

  #app{
    min-height:100dvh;
    box-shadow:none;
  }

  .screen{
    min-height:100dvh;
  }
}


/* ===== STEP 9 FINAL POLISH ===== */

/* ---------------------------------------------------------
   APP FRAME / MOBILE HEIGHT
--------------------------------------------------------- */

.app-screen{
  position:relative;
}

@media (min-width:700px){
  body{
    padding:16px 0;
    overflow:hidden;
  }

  #app{
    height:calc(100vh - 32px);
    min-height:720px;
    max-height:900px;
    overflow:hidden;
  }

  .screen{
    height:100%;
    min-height:100%;
    overflow-y:auto;
    scrollbar-width:none;
  }

  .screen::-webkit-scrollbar{
    display:none;
  }
}


/* ---------------------------------------------------------
   BRANCH HEADER BRANDING
--------------------------------------------------------- */

.branch-brand-wrap{
  display:flex;
  align-items:flex-start;
  gap:11px;
  position:relative;
  z-index:2;
}

.branch-emblem{
  width:43px;
  height:43px;
  flex:0 0 43px;
  object-fit:contain;
  padding:3px;
  border-radius:12px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(244,215,124,.70);
  box-shadow:
    0 7px 18px rgba(0,0,0,.16),
    0 0 0 3px rgba(255,255,255,.05);
}

.branch-heading{
  min-width:0;
}

.branch-heading h2{
  margin-top:4px;
  line-height:1.12;
}

.branch-heading p{
  white-space:nowrap;
}


/* ---------------------------------------------------------
   HERO REGISTRATION CARD
--------------------------------------------------------- */

.hero-action{
  min-height:102px;
  padding:17px 18px;
}

.hero-plus{
  min-width:61px;
  width:61px;
  height:61px;
  font-size:0;
}

.hero-plus:after{
  content:"+";
  font-size:31px;
  line-height:1;
  font-weight:400;
}

.hero-action strong{
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.15px;
}

.hero-action span{
  display:inline-flex;
  align-items:center;
  margin-top:3px;
}


/* ---------------------------------------------------------
   DASHBOARD STATS
--------------------------------------------------------- */

.stats-grid article{
  min-height:91px;
}

.stats-grid strong{
  font-size:27px;
}

.stats-grid span{
  display:block;
  margin-top:2px;
  font-size:11.5px;
}


/* ---------------------------------------------------------
   QUICK ACTION FINAL ALIGNMENT
--------------------------------------------------------- */

.quick-grid button{
  min-height:88px;
  padding:10px 4px 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.qa-icon{
  width:36px;
  height:36px;
  border-radius:11px;
}

.qa-icon svg{
  width:19px;
  height:19px;
}

.quick-grid button > span:last-child{
  min-height:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:7px;
  font-size:10px;
  line-height:1.1;
}


/* ---------------------------------------------------------
   RECENT STUDENTS
--------------------------------------------------------- */

.student-mini{
  min-height:61px;
  padding:11px 12px;
}

.student-mini .student-avatar{
  width:43px;
  height:43px;
}

.student-mini strong{
  color:var(--p-navy-900);
  font-size:12.5px;
  line-height:1.2;
}

.student-mini > div:nth-child(2) > span{
  margin-top:3px;
  font-size:9.8px;
  letter-spacing:.15px;
}

.student-mini .status{
  padding:5px 8px;
  font-size:9.5px!important;
}


/* ---------------------------------------------------------
   BOTTOM NAVIGATION - SAFE AREA + READABILITY
--------------------------------------------------------- */

.bottom-nav{
  height:82px;
  padding:
    8px 7px
    max(9px, env(safe-area-inset-bottom))
    7px;
  z-index:50;
}

.bottom-nav button{
  min-height:52px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
}

.bottom-nav button .ui-svg{
  width:20px;
  height:20px;
}

.bottom-nav button span:last-child{
  margin-top:1px;
  font-size:9.5px;
  font-weight:650;
  line-height:1;
}

.bottom-nav .nav-active{
  color:var(--p-gold-300);
}

.bottom-nav .nav-active span:last-child{
  font-weight:800;
}

.bottom-nav .nav-add{
  min-height:59px;
  display:grid;
  place-items:center;
  margin-top:-29px;
}

.bottom-nav .nav-add .ui-svg{
  width:23px;
  height:23px;
  color:var(--p-navy-950);
}

#screen-dashboard .content{
  padding-bottom:110px;
}


/* ---------------------------------------------------------
   REGISTRATION HEADER
--------------------------------------------------------- */

#screen-registration .simple-header{
  background:
    radial-gradient(circle at 100% 0%,rgba(224,179,60,.07),transparent 30%),
    #fff;
}

#screen-registration .simple-header h2{
  font-size:18px;
  font-weight:800;
}

#screen-registration .simple-header p{
  margin-top:4px;
  color:#7b8796;
}


/* ---------------------------------------------------------
   REGISTRATION STEPPER
--------------------------------------------------------- */

.stepper{
  padding-top:16px;
  padding-bottom:16px;
}

.step-dot{
  transition:.2s ease;
}

.step-dot.current{
  transform:scale(1.08);
}


/* ---------------------------------------------------------
   REGISTRATION CARD EXPERIENCE
--------------------------------------------------------- */

.form-step{
  background:#fff;
  border:1px solid rgba(215,225,236,.92);
  border-radius:20px;
  padding:17px;
  box-shadow:
    0 8px 25px rgba(8,27,51,.06);
}

.form-content{
  padding-top:16px;
}

.step-title small{
  display:inline-block;
  font-size:10px;
  letter-spacing:1.4px;
}

.step-title h3{
  margin-top:4px;
  margin-bottom:17px;
  font-size:19px;
}

.photo-upload{
  margin-bottom:18px;
  background:
    radial-gradient(circle at 100% 0%,rgba(224,179,60,.07),transparent 35%),
    #fff;
}

.photo-placeholder{
  flex:0 0 76px;
}

.photo-upload button{
  min-height:42px;
  padding:0 14px;
}


/* ---------------------------------------------------------
   FORM LABELS / FIELDS
--------------------------------------------------------- */

.form-content label{
  font-size:12px;
  font-weight:750;
}

.form-content input,
.form-content select,
.form-content textarea{
  font-size:13px;
  color:var(--p-text);
}

.form-content input::placeholder,
.form-content textarea::placeholder{
  color:#98a4b3;
}

.form-content select{
  cursor:pointer;
}


/* ---------------------------------------------------------
   FORM FOOTER
--------------------------------------------------------- */

.form-footer{
  z-index:60;
  padding-bottom:max(13px, env(safe-area-inset-bottom));
}

.form-footer .primary{
  background:
    linear-gradient(135deg,#06172c,#0d3c72 62%,#1558a5);
}

.form-footer .secondary{
  border:1px solid #dde5ee;
  background:#f4f7fa;
}


/* ---------------------------------------------------------
   REVIEW SCREEN
--------------------------------------------------------- */

.review-card{
  overflow:hidden;
}

.review-card p{
  align-items:flex-start;
  padding:10px 0;
}

.review-card strong{
  color:var(--p-navy-900);
  text-align:right;
}


/* ---------------------------------------------------------
   SUCCESS SCREEN
--------------------------------------------------------- */

.success-screen h2{
  font-size:24px;
  letter-spacing:-.3px;
}

.success-card{
  padding:22px 18px;
}


/* ---------------------------------------------------------
   STUDENT LIST
--------------------------------------------------------- */

.student-row{
  min-height:72px;
}

.student-row strong{
  font-size:12.5px;
  color:var(--p-navy-900);
}

.student-row small,
.student-row > div:nth-child(2) > span{
  font-size:10px;
}


/* ---------------------------------------------------------
   MOBILE PHONE SAFE AREA
--------------------------------------------------------- */

@media (max-width:699px){

  body{
    background:var(--p-bg);
  }

  .topbar.dark{
    padding-top:max(22px, env(safe-area-inset-top));
  }

  .bottom-nav{
    position:fixed;
    width:100%;
    max-width:430px;
    left:50%;
    right:auto;
    transform:translateX(-50%);
  }

  #screen-dashboard .content{
    padding-bottom:
      calc(105px + env(safe-area-inset-bottom));
  }

  .form-footer{
    position:fixed;
    width:100%;
    max-width:430px;
    left:50%;
    right:auto;
    transform:translateX(-50%);
  }

  .form-content{
    padding-bottom:
      calc(110px + env(safe-area-inset-bottom));
  }
}

/* ===== OFFICIAL BYTC LOGO FIX ===== */

.mini-logo{
  width:100px;
  height:100px;
  padding:7px;
  background:#fff;
}

.mini-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand-mark{
  width:142px;
  height:142px;
}

.brand-ring{
  width:118px;
  height:118px;
}

.brand-ring img{
  object-fit:contain;
  padding:5px;
}

.branch-emblem{
  width:48px;
  height:48px;
  flex-basis:48px;
  padding:4px;
  object-fit:contain;
  background:#fff;
}

@media (max-width:380px){
  .branch-emblem{
    width:44px;
    height:44px;
    flex-basis:44px;
  }
}
