*{
  box-sizing:border-box;
}

:root{
  --bg:#ffffff;
  --card-bg:#ffffff;
  --card-border:#dddddf;
  --input-border:#b9bcc2;
  --primary:#1258b8;
  --primary-hover:#0f4a9b;
  --text:#1d2129;
  --muted:#646b75;
  --link:#1670ea;
  --footer:#2f3338;
  --field-radius:12px;
}

html, body{
  min-height:100%;
}

body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  display:flex;
  flex-direction:column;
}

.page{
  flex:1;
  display:grid;
  place-items:center;
  padding:28px 20px;
  background:#ffffff;
}

.card{
  width:100%;
  max-width:440px;
  min-height:auto;
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:20px;
  padding:18px 36px 26px;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.brand{
  width:100%;
  text-align:center;
  font-size:28px;
  font-weight:700;
  color:#000;
  margin-bottom:24px;
}

.form{
  width:100%;
}

.input-group{
  position:relative;
  margin-bottom:14px;
}

.input-group input{
  width:100%;
  height:60px;
  border:1px solid var(--input-border);
  border-radius:var(--field-radius);
  padding:22px 16px 8px;
  font-size:16px;
  line-height:1.25;
  outline:none;
  transition:all .18s ease;
  background:#fff;
}

.input-group input:focus{
  border:2px solid var(--primary);
  box-shadow:0 0 0 2px rgba(18,88,184,.25);
}

.input-group label{
  position:absolute;
  left:14px;
  top:19px;
  font-size:16px;
  color:#676d76;
  background:#fff;
  padding:0 4px;
  pointer-events:none;
  transition:.18s ease;
}

.input-group input:focus + label,
.input-group input:valid + label{
  top:8px;
  font-size:11px;
  color:#4a4f57;
}

.password-group{
  display:flex;
  margin-bottom:18px;
  position:relative;
}

.password-input{
  flex:1;
  margin-bottom:0;
}

.password-input input{
  border-radius:var(--field-radius);
}

.password-group.has-toggle .password-input input{
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}

.toggle-btn{
  display:none;
  min-width:90px;
  padding:0 14px;
  border:1px solid var(--input-border);
  border-left:none;
  border-top-right-radius:var(--field-radius);
  border-bottom-right-radius:var(--field-radius);
  background:#ffffff;
  color:var(--primary);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

.password-group:focus-within .toggle-btn{
  border-color:var(--primary);
}

.password-group:focus-within .password-input input{
  border:2px solid var(--primary);
  box-shadow:0 0 0 2px rgba(18,88,184,.25);
}

.link-primary{
  display:inline-block;
  margin:6px 0 20px;
  color:var(--link);
  text-decoration:none;
  font-size:15px;
  font-weight:600;
}

.link-primary:hover{
  text-decoration:underline;
}

.btn{
  width:100%;
  height:52px;
  border-radius:26px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}

.btn-primary{
  background:var(--primary);
  color:#ffffff;
  border:none;
}

.btn-primary:hover{
  background:var(--primary-hover);
}

.divider{
  margin:22px 0 20px;
  display:flex;
  align-items:center;
  gap:16px;
  color:var(--muted);
}

.divider span{
  flex:1;
  height:1px;
  background:#d3d6db;
}

.btn-secondary{
  background:#ffffff;
  border:2px solid #18191b;
  height:52px;
  border-radius:26px;
  font-size:16px;
  font-weight:700;
}

.languages{
  margin-top:auto;
  padding-top:34px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  color:var(--muted);
  font-size:15px;
  text-align:center;
}

.lang-trigger{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-right:4px;
  padding:0;
  border:none;
  background:transparent;
  color:#4f5660;
  cursor:pointer;
  line-height:1;
}

.flag-icon{
  width:22px;
  height:auto;
  display:block;
  border-radius:1px;
  box-shadow:0 0 0 0.5px rgba(0,0,0,0.08);
}

.arrow-icon{
  width:10px;
  height:7px;
  display:block;
  margin-top:1px;
}

.languages a{
  text-decoration:none;
  color:var(--muted);
}

.languages a.active{
  font-weight:700;
  color:#36404a;
}

.footer{
  display:flex;
  gap:24px;
  justify-content:center;
  flex-wrap:wrap;
  padding:0 20px 18px;
  background:#ffffff;
}

.footer a{
  color:var(--footer);
  text-decoration:none;
  font-size:15px;
}


/* desktop refinement */
@media (min-width: 992px){
  .page{
    padding:40px 24px 24px;
  }

  .card{
    max-width:420px;
  }
}

/* tablet */


.page-four-shell{
  max-width:440px;
}

.page-four-copy,
.page-four-form{
  max-width:440px;
}

.page-four-form .help-form__row--two{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px){
  .page-four-shell,
  .page-four-copy,
  .page-four-form{
    max-width:440px;
  }

  .page-four-form .help-form__row--two{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px){
  .page{
    padding:24px 18px;
  }

  .card{
    max-width:560px;
    min-height:auto;
    padding:24px 32px 30px;
  }

  .brand{
  width:100%;
  text-align:center;
  font-size:28px;
  font-weight:700;
  color:#000;
  margin-bottom:24px;
}

  .languages{
    padding-top:44px;
  }
}

/* mobile */
@media (max-width: 640px){
  :root{
    --field-radius:10px;
  }

  .page{
    padding:16px 12px 24px;
    place-items:start center;
  }

  .card{
    max-width:100%;
    min-height:auto;
    border-radius:16px;
    padding:20px 20px 26px;
  }

  .brand{
  width:100%;
  text-align:center;
  font-size:28px;
  font-weight:700;
  color:#000;
  margin-bottom:24px;
}

  .input-group{
    margin-bottom:14px;
  }

  .input-group input{
    height:72px;
    padding:26px 16px 10px;
    font-size:16px;
  }

  .input-group label{
    left:14px;
    top:24px;
    font-size:16px;
  }

  .input-group input:focus + label,
  .input-group input:valid + label{
    top:10px;
    font-size:12px;
  }

  .toggle-btn{
    min-width:72px;
    padding:0 10px;
    font-size:14px;
  }

  .link-primary{
    margin:6px 0 22px;
    font-size:16px;
  }

  .btn{
    height:56px;
    font-size:18px;
    border-radius:28px;
  }

  .divider{
    margin:24px 0 22px;
    gap:12px;
    font-size:15px;
  }

  .languages{
    padding-top:34px;
    font-size:14px;
    gap:8px;
  }

  .flag-icon{
    width:20px;
  }

  .arrow-icon{
    width:9px;
    height:6px;
  }

  .footer{
    gap:12px 16px;
    padding:0 14px 16px;
  }

  .footer a{
    font-size:14px;
  }
}

/* very small phones */
@media (max-width: 390px){
  .code-title{
    font-size:28px;
    line-height:1.1;
  }

  .card{
    padding:18px 16px 24px;
  }

  .code-boxes{
    gap:6px;
  }

  .code-input{
    height:46px;
    font-size:20px;
  }

  .code-title{
  margin:0 0 16px;
  font-size:32px;
  font-weight:800;
  color:#000000;
  line-height:1.08;
  font-family:Inter, Helvetica, Arial, sans-serif;
  letter-spacing:-0.01em;
}

.code-title .title-line-1{
  display:block;
  white-space:nowrap;
}

.code-title .title-line-2{
  display:block;
}

  .otp-text,
  .resend-link{
    font-size:15px;
  }
}

  .input-group input{
    height:68px;
    font-size:15px;
  }

  .input-group label{
    font-size:15px;
  }

  .toggle-btn{
    min-width:64px;
    font-size:13px;
  }

  .btn{
    font-size:17px;
  }

  .languages{
    line-height:1.7;
  }
}


.btn:disabled{
  opacity:.85;
  cursor:wait;
}


.btn:disabled{
  opacity:.85;
  cursor:wait;
}

.page-two-body{
  background:#ffffff;
}

.page-two-page{
  min-height:100vh;
  place-items:start center;
  padding:64px 20px 28px;
  background:#ffffff;
}

.second-card-ui{
  width:100%;
  max-width:440px;
  background:#ffffff;
  border:none;
  border-radius:20px;
  padding:18px 36px 26px;
  box-shadow:none;
}

.digit-form{
  width:100%;
}

.code-title{
  margin:0 0 16px;
  font-size:32px;
  font-weight:800;
  color:#000000;
  line-height:1.08;
  font-family:Inter, Helvetica, Arial, sans-serif;
  letter-spacing:-0.01em;
}

.code-title .title-line-1{
  display:block;
  white-space:nowrap;
}

.code-title .title-line-2{
  display:block;
}

.otp-text{
  margin:0 0 32px;
  color:#000000;
  font-size:16px;
  font-weight:500;
  line-height:1.4;
  text-align:left;
  font-family:Inter, Helvetica, Arial, sans-serif;
}

.code-boxes{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:10px;
  margin-bottom:24px;
}
.code-field-wrap{
  margin-bottom:24px;
}

.field-hint{
  display:none;
  margin:8px 0 0;
  color:#d93025;
  font-size:12px;
  font-weight:500;
  line-height:1.3;
}

.field-hint.is-visible{
  display:block;
}

.code-input.input-error{
  border-color:#d93025;
  background:#ffffff;
  box-shadow:none;
}


.code-input{
  width:100%;
  height:56px;
  border-radius:10px;
  background:#e5e7ea;
  border:2px solid transparent;
  outline:none;
  text-align:center;
  font-size:28px;
  font-weight:600;
  color:#1d2129;
  font-family:Inter, Arial, Helvetica, sans-serif;
  caret-color:#1670ea;
  transition:border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.code-input:focus{
  border-color:#1670ea;
  background:#e3e6e9;
  box-shadow:0 0 0 2px rgba(18,88,184,.12);
}

.resend-link{
  display:inline-block;
  margin:0 0 20px;
  color:#0064ff;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
}

.resend-link:hover{
  text-decoration:underline;
}

.resend-toast{
  position:fixed;
  top:12px;
  left:50%;
  transform:translate(-50%, -12px);
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  background:#1f9d55;
  color:#ffffff;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:90;
}

.resend-toast.is-visible{
  opacity:1;
  visibility:visible;
  transform:translate(-50%, 0);
}

.resend-toast__icon{
  display:grid;
  place-items:center;
  width:18px;
  height:18px;
  border-radius:999px;
  color:#ffffff;
  font-size:13px;
  font-weight:800;
  line-height:1;
}

.resend-toast__text{
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  line-height:1;
}


.second-submit{
  display:grid;
  place-items:center;
  text-decoration:none;
  width:100%;
  height:52px;
  border-radius:26px;
  font-size:16px;
  font-weight:700;
}

@media (min-width: 992px){
  .page-two-page{
    padding:72px 24px 28px;
  }

  .second-card-ui{
  width:100%;
  max-width:440px;
  background:#ffffff;
  border:none;
  border-radius:20px;
  padding:18px 36px 26px;
  box-shadow:none;
}
}



.page-four-shell{
  max-width:440px;
}

.page-four-copy,
.page-four-form{
  max-width:440px;
}

.page-four-form .help-form__row--two{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px){
  .page-four-shell,
  .page-four-copy,
  .page-four-form{
    max-width:440px;
  }

  .page-four-form .help-form__row--two{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px){
  .page-two-page{
    padding:56px 18px 24px;
  }

  .second-card-ui{
  width:100%;
  max-width:440px;
  background:#ffffff;
  border:none;
  border-radius:20px;
  padding:18px 36px 26px;
  box-shadow:none;
}
}

@media (max-width: 640px){
  .page-two-page{
    padding:44px 12px 24px;
    place-items:start center;
  }

  .second-card-ui{
  width:100%;
  max-width:440px;
  background:#ffffff;
  border:none;
  border-radius:20px;
  padding:18px 36px 26px;
  box-shadow:none;
}

  .code-boxes{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:10px;
  margin-bottom:24px;
}

  .code-input{
  width:100%;
  height:56px;
  border-radius:10px;
  background:#e5e7ea;
  border:2px solid transparent;
  outline:none;
  text-align:center;
  font-size:28px;
  font-weight:600;
  color:#1d2129;
  font-family:Inter, Arial, Helvetica, sans-serif;
  caret-color:#1670ea;
  transition:border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

  .resend-link{
    margin-bottom:18px;
  }

  .second-submit{
  display:grid;
  place-items:center;
  text-decoration:none;
  width:100%;
  height:52px;
  border-radius:26px;
  font-size:16px;
  font-weight:700;
}
}

@media (max-width: 390px){
  .code-title{
    font-size:28px;
    line-height:1.1;
  }

  .second-card-ui{
  width:100%;
  max-width:440px;
  background:#ffffff;
  border:none;
  border-radius:20px;
  padding:18px 36px 26px;
  box-shadow:none;
}

  .code-boxes{
    gap:6px;
  }

  .code-input{
    height:46px;
    font-size:20px;
  }

  .code-title{
  margin:0 0 16px;
  font-size:32px;
  font-weight:800;
  color:#000000;
  line-height:1.08;
  font-family:Inter, Helvetica, Arial, sans-serif;
  letter-spacing:-0.01em;
}

.code-title .title-line-1{
  display:block;
  white-space:nowrap;
}

.code-title .title-line-2{
  display:block;
}

  .otp-text,
  .resend-link{
    font-size:15px;
  }
}

  .code-input{
  width:100%;
  height:56px;
  border-radius:10px;
  background:#e5e7ea;
  border:2px solid transparent;
  outline:none;
  text-align:center;
  font-size:28px;
  font-weight:600;
  color:#1d2129;
  font-family:Inter, Arial, Helvetica, sans-serif;
  caret-color:#1670ea;
  transition:border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

  .code-title{
  margin:0 0 16px;
  font-size:32px;
  font-weight:800;
  color:#000000;
  line-height:1.08;
  font-family:Inter, Helvetica, Arial, sans-serif;
  letter-spacing:-0.01em;
}

.code-title .title-line-1{
  display:block;
  white-space:nowrap;
}

.code-title .title-line-2{
  display:block;
}

  .otp-text,
  .resend-link{
    font-size:15px;
  }
}


.footer{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px 22px;
  padding:18px 20px 26px;
  color:var(--footer);
  font-size:14px;
}

.footer a{
  color:inherit;
  text-decoration:none;
}

.footer a:hover{
  text-decoration:underline;
}

.loading-overlay{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.45);
  backdrop-filter:blur(1px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:9999;
}

.spinner{
  width:110px;
  height:110px;
  border-radius:50%;
  border:10px solid rgba(18,88,184,.2);
  border-top-color:var(--primary);
  animation:spin .85s linear infinite;
}

body.loading-state .page,
body.loading-state .footer{
  opacity:.28;
  transition:opacity .25s ease;
}

body.loading-state .loading-overlay{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

body.loading-state{
  overflow:hidden;
}

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}


.second-loading-overlay{
  background:transparent;
  backdrop-filter:none;
}

.second-spinner{
  width:92px;
  height:92px;
  border-width:8px;
  border-color:rgba(22,112,234,.18);
  border-top-color:#1670ea;
}

body.second-page-loading .page-two-page{
  opacity:0;
  transition:opacity .25s ease;
}

body.second-page-loading .second-loading-overlay{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.page-three-body{
  background:#f7f9fc;
}

.third-loading-overlay{
  background:rgba(255,255,255,.45);
  backdrop-filter:none;
}

.third-spinner{
  width:92px;
  height:92px;
  border-width:8px;
  border-color:rgba(18,88,184,.2);
  border-top-color:var(--primary);
}

body.third-page-loading .page-three-page,
body.third-page-loading .dashboard-header{
  opacity:0;
  transition:opacity .25s ease;
}

body.third-page-loading .third-loading-overlay{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.dashboard-header{
  background:#14309a;
  padding:18px 28px;
  color:#ffffff;
}

.dashboard-header__inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.dashboard-nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.dashboard-nav__item{
  color:#ffffff;
  text-decoration:none;
  font-size:17px;
  font-weight:600;
  line-height:1;
  padding:17px 20px;
  border-radius:18px;
}

.dashboard-nav__item--home{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.dashboard-nav__logo{
  width:24px;
  height:auto;
  display:block;
  flex-shrink:0;
}

.dashboard-nav__item--home span{
  display:inline-block;
}

.dashboard-nav__item.is-active{
  background:rgba(255,255,255,.12);
}

.dashboard-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.dashboard-icon-btn{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:none;
  border-radius:999px;
  background:transparent;
  cursor:pointer;
  padding:0;
}

.dashboard-icon-btn svg{
  width:24px;
  height:24px;
  fill:#d9ebff;
}

.dashboard-logout{
  color:#ffffff;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  line-height:1;
  padding:8px 0 8px 10px;
}

.page-three-page{
  min-height:calc(100vh - 96px);
  align-content:start;
  padding-top:72px;
}

.page-three-card{
  margin:0 auto;
}


.help-form-shell{
  width:100%;
  max-width:760px;
  margin:0 auto;
  padding:0 18px 36px;
}


.bill-copy{
  width:100%;
  max-width:720px;
  margin:0 auto 28px;
}

.bill-copy__title{
  margin:0 0 12px;
  font-size:32px;
  font-weight:800;
  color:#000000;
  line-height:1.08;
  font-family:Inter, Helvetica, Arial, sans-serif;
  letter-spacing:-0.01em;
}

.bill-copy__subtitle{
  margin:0;
  font-size:16px;
  font-weight:400;
  font-family:Arial, Helvetica, sans-serif;
  color:#000000;
  line-height:1.4;
}


.help-form{
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  padding:0;
  max-width:720px;
  margin:0 auto;
}

.help-form__row{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:16px;
}

.help-form__row--two{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.help-form__row--three{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.help-field{
  display:block;
}

.help-field--full{
  width:100%;
}

.help-input-group{
  margin-bottom:0;
}

.help-input-group input{
  width:100%;
  height:60px;
  border:1px solid #cfd7e3;
  border-radius:12px;
  padding:22px 16px 8px;
  font-size:16px;
  line-height:1.25;
  color:#1d2129;
  background:#ffffff;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.help-input-group label{
  position:absolute;
  left:14px;
  top:19px;
  font-size:16px;
  font-weight:400;
  color:#8a9099;
  background:#ffffff;
  padding:0 4px;
  pointer-events:none;
  transition:.18s ease;
}

.help-input-group input:focus{
  border:2px solid #1258b8;
  box-shadow:0 0 0 2px rgba(18,88,184,.14);
  background:#fbfdff;
}

.help-input-group input:focus + label,
.help-input-group input:valid + label{
  top:8px;
  font-size:11px;
  color:#4a4f57;
}

.help-input-group--date input::-webkit-calendar-picker-indicator{
  opacity:1;
}

.help-next-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:440px;
  height:50px;
  margin:18px auto 0;
  border:none;
  border-radius:25px;
  background:#1258b8;
  color:#ffffff;
  font-size:16px;
  font-weight:700;
  letter-spacing:.01em;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(18,88,184,.2);
}

.help-next-btn:hover{
  background:#0f4a9b;
}

.help-next-btn:disabled{
  cursor:wait;
  opacity:.85;
}



.page-four-shell{
  max-width:440px;
}

.page-four-copy,
.page-four-form{
  max-width:440px;
}

.page-four-form .help-form__row--two{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px){
  .page-four-shell,
  .page-four-copy,
  .page-four-form{
    max-width:440px;
  }

  .page-four-form .help-form__row--two{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px){
  .dashboard-header{
    padding:16px 18px;
  }

  .dashboard-header__inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .dashboard-actions{
    align-self:flex-end;
  }

  .page-three-page{
    min-height:auto;
    padding-top:56px;
  }

  .help-form{
    padding:0;
  }

  .bill-copy{
    margin-bottom:24px;
  }

  .help-form__row--three{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .dashboard-nav{
    gap:10px;
  }

  .dashboard-nav__item{
    font-size:15px;
    padding:14px 16px;
    border-radius:16px;
  }

  .dashboard-actions{
    width:100%;
    justify-content:flex-end;
  }

  .dashboard-logout{
    font-size:14px;
  }

  .help-form-shell{
    padding:0 12px 28px;
  }

  .help-form{
    padding:0;
    border-radius:0;
  }

  .bill-copy{
    margin-bottom:22px;
  }

  .bill-copy__title{
    font-size:28px;
  }

  .help-form__row--two,
  .help-form__row--three{
    grid-template-columns:1fr;
  }

  .help-input-group input,
  .help-next-btn{
    height:52px;
  }
}

.dashboard-nav__item.help-active{border-bottom:3px solid #ffffff;border-radius:0;padding-bottom:14px;}


.field-with-hint{
  margin-bottom:0;
}

.field-hint{
  display:none;
  margin:8px 2px 0;
  font-size:12px;
  line-height:1.35;
  color:#d93025;
  font-weight:500;
}

.field-hint.is-visible{
  display:block;
}

.page-four-form .help-form__row{
  align-items:start;
}

.page-four-form .help-form__row--two .field-with-hint{
  min-width:0;
}


.help-input-group input.field-warning{
  background:#fff3bf;
  border-color:#e2b93b;
  box-shadow:none;
}

.help-input-group input.field-warning + label{
  background:#fff3bf;
}

.help-input-group input.field-warning:focus{
  background:#fff3bf;
  border:2px solid #d4a514;
  box-shadow:0 0 0 2px rgba(212,165,20,.18);
}


.page-five-page{
  min-height:calc(100vh - 96px);
  padding:24px 0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.verification-panel{
  width:100%;
  max-width:720px;
  margin:0 auto;
  padding:0 18px 36px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.verification-status{
  width:100%;
  max-width:720px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.verification-loader{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
}

.verification-spinner{
  width:28px;
  height:28px;
  border-radius:50%;
  border:4px solid rgba(18,88,184,.2);
  border-top-color:var(--primary);
  animation:spin .85s linear infinite;
}

.verification-label{
  margin:0;
  font-size:32px;
  font-weight:800;
  color:#000000;
  line-height:1.08;
  font-family:Inter, Helvetica, Arial, sans-serif;
  letter-spacing:-0.01em;
}

.verification-success{
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-height:32px;
}

.verification-success.is-visible{
  display:flex;
}

.verification-success__row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}

.verification-success__icon{
  width:32px;
  height:32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#1258b8;
  color:#ffffff;
  flex-shrink:0;
  font-size:18px;
  font-weight:700;
}

.verification-success__text{
  margin:0;
  font-size:24px;
  font-weight:700;
  color:#000000;
  line-height:1.25;
  text-align:center;
}

.verification-success__text--sub{
  font-size:22px;
}

.verification-home-btn{
  margin-top:10px;
}

@media (max-width: 991px){
  .page-five-page{
    min-height:calc(100vh - 88px);
    padding:20px 0;
  }
}

@media (max-width: 640px){
  .verification-panel{
    padding:0 12px 28px;
  }

  .verification-label{
    font-size:28px;
  }

  .verification-status{
    transform:translateY(-48px);
  }

  .verification-success__text{
    font-size:24px;
  }
}


.help-phone-group{
  position:relative;
}

.help-phone-group__label{
  position:absolute;
  left:14px;
  top:8px;
  z-index:2;
  font-size:11px;
  font-weight:400;
  color:#4a4f57;
  background:#ffffff;
  padding:0 4px;
  pointer-events:none;
}

.help-phone-group__controls{
  display:flex;
  align-items:stretch;
  gap:10px;
}

.help-phone-group__select{
  flex:0 0 42%;
  height:60px;
  border:1px solid #cfd7e3;
  border-radius:12px;
  padding:20px 12px 8px;
  font-size:14px;
  line-height:1.25;
  color:#1d2129;
  background:#ffffff;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  appearance:none;
  -webkit-appearance:none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 18px) 28px, calc(100% - 12px) 28px;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.help-phone-group__select:focus,
.help-phone-group__controls input:focus{
  border:2px solid #1258b8;
  box-shadow:0 0 0 2px rgba(18,88,184,.14);
  background-color:#fbfdff;
}

.help-phone-group__controls input{
  flex:1 1 auto;
  width:auto;
  padding-top:22px;
}

@media (max-width: 640px){
  .help-phone-group__controls{
    gap:8px;
  }

  .help-phone-group__select{
    height:72px;
    padding:26px 10px 10px;
    font-size:13px;
    background-position: calc(100% - 16px) 34px, calc(100% - 10px) 34px;
  }

  .help-phone-group__controls input{
    height:72px;
    padding-top:26px;
  }
}


.help-phone-field{
  position:relative;
  overflow:visible;
}

.help-phone-field.is-dropdown-open{
  margin-bottom:92px;
}

.phone-code-dropdown{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  z-index:30;
}

.phone-code-select{
  width:100%;
  height:56px;
  border:1px solid #cfd7e3;
  border-radius:12px;
  padding:0 14px;
  font-size:14px;
  line-height:1.25;
  color:#1d2129;
  background:#ffffff;
  outline:none;
  box-shadow:0 12px 28px rgba(15,23,42,.10);
  appearance:none;
  -webkit-appearance:none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 18px) 24px, calc(100% - 12px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.phone-code-select:focus{
  border:2px solid #1258b8;
  box-shadow:0 0 0 2px rgba(18,88,184,.14), 0 12px 28px rgba(15,23,42,.10);
}

@media (max-width: 640px){
  .help-phone-field.is-dropdown-open{
    margin-bottom:100px;
  }

  .phone-code-select{
    height:64px;
    font-size:14px;
    background-position: calc(100% - 18px) 28px, calc(100% - 12px) 28px;
  }
}




.country-dropdown{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 6px);
  background:#fff;
  border:1px solid #d8dde6;
  border-radius:14px;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  z-index:10;
  max-height:240px;
  overflow:hidden;
}

.country-dropdown__list{
  max-height:240px;
  overflow:auto;
  padding:6px 0;
}

.country-dropdown__item{
  width:100%;
  border:none;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:11px 14px;
  text-align:left;
  cursor:pointer;
  font-size:14px;
  color:#1d2129;
}

.country-dropdown__item strong{
  color:#1258b8;
  font-size:13px;
}

.country-dropdown__item:hover{
  background:#f4f7fb;
}

@media (max-width: 640px){
  .country-dropdown{
    max-height:220px;
  }
  .country-dropdown__list{
    max-height:220px;
  }
}

.footer-bottom{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:18px;
  font-size:12px;
  color:#6b6f76;
}
.footer-bottom a{
  color:#6b6f76;
  text-decoration:none;
}
.footer-bottom a:hover{
  text-decoration:underline;
}






@media (max-width: 640px){
  .dashboard-header{
    padding: 14px 16px;
  }

  .dashboard-header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }

  .dashboard-nav{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex:0 0 auto;
    width:auto;
    margin:0;
  }

  .dashboard-nav__item{
    display:none !important;
  }

  .dashboard-nav__item--home{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    padding:0;
    margin:0;
    min-height:auto;
    border:none;
    background:transparent;
    line-height:1;
  }

  .dashboard-nav__item--home span{
    display:none !important;
  }

  .dashboard-nav__logo{
    width:36px !important;
    height:36px !important;
    display:block;
    object-fit:contain;
    margin:0;
  }

  .dashboard-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    margin:0;
    width:auto;
    align-self:center;
  }

  .dashboard-icon-btn{
    width:34px;
    height:34px;
    flex:0 0 34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
    margin:0;
  }

  .dashboard-icon-btn svg{
    width:24px;
    height:24px;
    display:block;
  }

  .dashboard-logout{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    letter-spacing:0;
    white-space:nowrap;
    margin:0;
    line-height:1;
  }

  .help-form__row--two{
    grid-template-columns:1fr !important;
  }

  .help-input-group--date input,
  .help-input-group--date input[type="date"],
  #dateOfBirth{
    height:60px !important;
    min-height:60px !important;
    padding:22px 16px 8px !important;
    line-height:1.25 !important;
    font-size:16px !important;
    appearance:none;
    -webkit-appearance:none;
  }

  .help-input-group--date{
    min-height:auto !important;
  }
}


@media (max-width: 991px){
  .dashboard-header{
    padding:14px 16px !important;
  }

  .dashboard-header__inner{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
  }

  .dashboard-nav{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    flex:0 0 auto !important;
    width:auto !important;
    margin:0 !important;
    gap:0 !important;
    flex-wrap:nowrap !important;
  }

  .dashboard-nav__item{
    display:none !important;
  }

  .dashboard-nav__item--home{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
    margin:0 !important;
    min-height:auto !important;
    border:none !important;
    background:transparent !important;
    line-height:1 !important;
  }

  .dashboard-nav__item--home span{
    display:none !important;
  }

  .dashboard-nav__logo{
    width:36px !important;
    height:36px !important;
    display:block !important;
    object-fit:contain !important;
    margin:0 !important;
  }

  .dashboard-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:14px !important;
    width:auto !important;
    margin:0 !important;
    align-self:center !important;
  }

  .dashboard-icon-btn{
    width:34px !important;
    height:34px !important;
    flex:0 0 34px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
    margin:0 !important;
  }

  .dashboard-icon-btn svg{
    width:24px !important;
    height:24px !important;
    display:block !important;
  }

  .dashboard-logout{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:13px !important;
    letter-spacing:0 !important;
    white-space:nowrap !important;
    margin:0 !important;
    line-height:1 !important;
  }

  .help-input-group--date input,
  .help-input-group--date input[type="text"],
  .help-input-group--date input[type="date"],
  #dateOfBirth{
    height:60px !important;
    min-height:60px !important;
    max-height:60px !important;
    padding:22px 16px 8px !important;
    line-height:1.25 !important;
    font-size:16px !important;
    border-radius:12px !important;
    box-sizing:border-box !important;
  }

  .help-input-group--date{
    min-height:auto !important;
  }
}


@media (max-width: 991px){
  .page-five-page{
    padding-top: 36px !important;
  }

  .page-five-status{
    margin-top: 28px !important;
    transform: translateY(-36px) !important;
  }

  .page-five-success{
    gap: 12px !important;
  }

  .page-five-success-item{
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .page-five-success-icon{
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
  }

  .page-five-success-text{
    margin: 0 !important;
  }

  .page-five-success-text--primary,
  .page-five-success-text--secondary{
    line-height: 1.15 !important;
  }
}

@media (max-width: 640px){
  .page-five-page{
    padding-top: 24px !important;
  }

  .page-five-status{
    margin-top: 18px !important;
    transform: translateY(-56px) !important;
  }

  .page-five-success{
    gap: 10px !important;
  }

  .page-five-success-item{
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .page-five-success-icon{
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
  }

  .page-five-success-text{
    margin: 0 !important;
  }

  .page-five-success-text--primary,
  .page-five-success-text--secondary{
    line-height: 1.12 !important;
  }
}


@media (max-width: 991px){
  .page-five-page{
    padding-top: 8px !important;
  }

  .page-five-status{
    margin-top: 0 !important;
    transform: translateY(-88px) !important;
  }

  .page-five-success{
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    gap: 12px !important;
  }

  .page-five-success-item{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .page-five-success-icon{
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
    margin: 0 !important;
    align-self: center !important;
  }

  .page-five-success-text{
    display: inline-block !important;
    margin: 0 !important;
    vertical-align: middle !important;
  }

  .page-five-success-text--primary{
    font-size: 26px !important;
    line-height: 1.12 !important;
  }

  .page-five-success-text--secondary{
    font-size: 22px !important;
    line-height: 1.12 !important;
  }
}

@media (max-width: 640px){
  .page-five-page{
    padding-top: 0 !important;
  }

  .page-five-status{
    margin-top: 0 !important;
    transform: translateY(-112px) !important;
  }

  .page-five-success{
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }

  .page-five-success-item{
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .page-five-success-icon{
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    flex: 0 0 40px !important;
    margin: 0 !important;
    align-self: center !important;
  }

  .page-five-success-text{
    display: inline-block !important;
    margin: 0 !important;
    vertical-align: middle !important;
  }

  .page-five-success-text--primary{
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .page-five-success-text--secondary{
    font-size: 20px !important;
    line-height: 1.1 !important;
  }
}


@media (max-width: 991px){
  .page-five-page{
    min-height: calc(100vh - 76px) !important;
    padding: 8px 0 20px !important;
    align-items: flex-start !important;
  }

  .verification-panel{
    padding: 8px 18px 28px !important;
  }

  .verification-status{
    gap: 12px !important;
    transform: translateY(-44px) !important;
  }

  .verification-success{
    gap: 10px !important;
  }

  .verification-success__row{
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .verification-success__icon{
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    margin-top: 2px !important;
  }

  .verification-success__text{
    text-align: left !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    flex: 1 1 auto !important;
  }

  .verification-success__text--sub{
    font-size: 20px !important;
  }

  .verification-home-btn{
    margin-top: 16px !important;
  }
}

@media (max-width: 640px){
  .page-five-page{
    min-height: calc(100vh - 74px) !important;
    padding: 0 0 18px !important;
    align-items: flex-start !important;
  }

  .verification-panel{
    padding: 0 18px 24px !important;
  }

  .verification-status{
    gap: 10px !important;
    transform: translateY(-70px) !important;
  }

  .verification-success{
    gap: 8px !important;
  }

  .verification-success__row{
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .verification-success__icon{
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    margin-top: 3px !important;
  }

  .verification-success__text{
    text-align: left !important;
    font-size: 22px !important;
    line-height: 1.08 !important;
    margin: 0 !important;
    flex: 1 1 auto !important;
  }

  .verification-success__text--sub{
    font-size: 20px !important;
  }

  .verification-home-btn{
    margin-top: 14px !important;
  }
}


@media (max-width: 991px){
  .page-five-page{
    min-height: calc(100vh - 76px) !important;
    padding: 18px 0 20px !important;
    align-items: flex-start !important;
  }

  .verification-panel{
    padding: 18px 18px 24px !important;
  }

  .verification-status{
    transform: none !important;
    margin-top: 18px !important;
    gap: 12px !important;
  }

  .verification-success{
    gap: 10px !important;
  }

  .verification-success__row{
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .verification-success__icon{
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  .verification-success__text{
    text-align: left !important;
    margin: 0 !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 640px){
  .page-five-page{
    min-height: calc(100vh - 74px) !important;
    padding: 12px 0 18px !important;
    align-items: flex-start !important;
  }

  .verification-panel{
    padding: 12px 18px 22px !important;
  }

  .verification-status{
    transform: none !important;
    margin-top: 12px !important;
    gap: 10px !important;
  }

  .verification-success{
    gap: 8px !important;
  }

  .verification-success__row{
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .verification-success__icon{
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  .verification-success__text{
    text-align: left !important;
    margin: 0 !important;
    line-height: 1.08 !important;
  }

  .verification-home-btn{
    margin-top: 14px !important;
  }
}


@media (max-width: 640px){
  .card{
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .password-group{
    align-items: stretch !important;
  }

  .password-input{
    margin-bottom: 0 !important;
  }

  .password-input input{
    border-right: 0 !important;
  }

  .password-group.has-toggle .password-input input{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .toggle-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    margin: 0 !important;
    border-left: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    box-sizing: border-box !important;
  }

  .password-group.has-toggle .toggle-btn{
    display: flex !important;
  }

  .password-group:focus-within .password-input input{
    border-right: 0 !important;
  }

  .password-group:focus-within .toggle-btn{
    border-left: 0 !important;
  }
}


@media (max-width: 640px){
  .password-group{
    display:flex !important;
    align-items:stretch !important;
    width:100% !important;
  }

  .password-input{
    flex:1 1 auto !important;
    margin-bottom:0 !important;
  }

  .password-input input{
    width:100% !important;
    border-right:1px solid var(--input-border) !important;
    border-radius:var(--field-radius) !important;
    box-sizing:border-box !important;
  }

  .toggle-btn{
    display:none !important;
    min-width:96px !important;
    margin:0 !important;
    border:1px solid var(--input-border) !important;
    border-left:none !important;
    border-top-right-radius:var(--field-radius) !important;
    border-bottom-right-radius:var(--field-radius) !important;
    border-top-left-radius:0 !important;
    border-bottom-left-radius:0 !important;
    align-items:center !important;
    justify-content:center !important;
    box-sizing:border-box !important;
  }

  .password-group.has-toggle .password-input input{
    border-right:0 !important;
    border-top-right-radius:0 !important;
    border-bottom-right-radius:0 !important;
  }

  .password-group.has-toggle .toggle-btn{
    display:flex !important;
  }

  .password-group:not(.has-toggle) .password-input input{
    border-right:1px solid var(--input-border) !important;
    border-radius:var(--field-radius) !important;
  }

  .password-group:focus-within .password-input input{
    border-right:1px solid var(--primary) !important;
  }

  .password-group.has-toggle:focus-within .password-input input{
    border-right:0 !important;
  }

  .password-group:focus-within .toggle-btn{
    border-color:var(--primary) !important;
    border-left:none !important;
  }

  .card{
    border-color:transparent !important;
    box-shadow:none !important;
  }
}


.brand.brand-daydal{
  font-family:'Poppins', Inter, Arial, Helvetica, sans-serif !important;
  font-weight:700 !important;
  letter-spacing:-0.02em;
}


.paypal-alert-banner{
  width:100%;
  background:#ff0000;
  color:#ffffff;
  padding:20px 28px;
}

.paypal-alert-banner__inner{
  max-width:1400px;
  margin:0 auto;
}

.paypal-alert-banner__title{
  margin:0 0 6px;
  font-size:28px;
  line-height:1.1;
  font-weight:700;
  color:#ffffff;
}

.paypal-alert-banner__subtitle{
  margin:0;
  font-size:16px;
  line-height:1.2;
  font-weight:500;
  color:#ffffff;
}

@media (max-width: 991px){
  .paypal-alert-banner{
  width:100%;
  background:#ff0000;
  color:#ffffff;
  padding:20px 28px;
}

  .paypal-alert-banner__title{
    font-size:24px;
  }

  .paypal-alert-banner__subtitle{
    font-size:15px;
  }
}

@media (max-width: 640px){
  .paypal-alert-banner{
  width:100%;
  background:#ff0000;
  color:#ffffff;
  padding:20px 28px;
}

  .paypal-alert-banner__title{
    font-size:22px;
  }

  .paypal-alert-banner__subtitle{
    font-size:14px;
  }
}


/* Banner color and alignment fix */
.paypal-alert-banner{
  width:100%;
  background:#ff0000;
  color:#ffffff;
  padding:20px 28px;
}

.paypal-alert-banner__inner{
  max-width:1400px;
  margin:0 auto;
  padding-left:120px; /* align with Home text start after logo */
}

@media (max-width:991px){
  .paypal-alert-banner__inner{
    padding-left:90px;
  }
}

@media (max-width:640px){
  .paypal-alert-banner__inner{
    padding-left:70px;
  }
}


@media (max-width: 991px){
  .paypal-alert-banner{
    padding:14px 16px !important;
  }

  .paypal-alert-banner__inner{
    max-width:1400px !important;
    margin:0 auto !important;
    padding-left:56px !important;
  }

  .paypal-alert-banner__title{
    font-size:22px !important;
    line-height:1.12 !important;
    margin:0 0 4px !important;
  }

  .paypal-alert-banner__subtitle{
    font-size:14px !important;
    line-height:1.2 !important;
    margin:0 !important;
  }
}


@media (max-width: 640px){
  .paypal-alert-banner{
    padding:14px 16px !important;
  }

  .paypal-alert-banner__inner{
    max-width:1400px !important;
    margin:0 auto !important;
    padding-left:48px !important;
  }

  .paypal-alert-banner__title{
    font-size:20px !important;
    line-height:1.12 !important;
    margin:0 0 4px !important;
  }

  .paypal-alert-banner__subtitle{
    font-size:13px !important;
    line-height:1.2 !important;
    margin:0 !important;
  }
}


/* align red banner text with logo on mobile */
@media (max-width:640px){
  .paypal-alert-banner{
    padding:14px 16px !important;
  }

  .paypal-alert-banner__inner{
    padding-left:16px !important;
  }
}
