:root{
  --navy:#062c5f;
  --blue:#0b63ce;
  --green:#0f9b8e;
  --light:#f5fbff;
  --text:#10233f;
  --muted:#667085;
  --border:#d9e6f2;
  --yellow:#f7c948;
  --shadow:0 18px 45px rgba(6,44,95,.14);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f7fbff;
  color:var(--text);
}

.signup-navbar{
  height:90px;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 55px;
  box-shadow:0 8px 25px rgba(6,44,95,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand img{
  width:56px;
  height:56px;
  object-fit:contain;
}

.brand h2{
  font-size:24px;
  font-weight:900;
  color:#07337c;
  line-height:1;
}

.brand h2 span{
  color:#25b24b;
}

.nav-links{
  display:flex;
  gap:24px;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color:#23395d;
  font-size:15px;
  font-weight:700;
}

.nav-links a:hover{
  color:var(--green);
}

.login-btn{
  text-decoration:none;
  border:2px solid var(--green);
  color:var(--green);
  padding:12px 24px;
  border-radius:10px;
  font-size:16px;
  font-weight:800;
}

.signup-main{
  padding:55px 20px;
  background:
    radial-gradient(circle at left 25%, rgba(15,155,142,.09), transparent 24%),
    radial-gradient(circle at right 35%, rgba(37,178,75,.08), transparent 22%),
    #f7fbff;
}

.signup-card{
  max-width:1080px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.signup-left{
  padding:42px 55px;
}

.signup-left h1{
  font-size:36px;
  font-weight:900;
  text-align:center;
  color:#12284c;
}

.signup-left h1 span{
  color:var(--blue);
}

.title-line{
  width:80px;
  height:4px;
  background:var(--yellow);
  border-radius:20px;
  margin:18px auto 20px;
}

.sub-text{
  text-align:center;
  color:#516173;
  font-size:15px;
  line-height:1.6;
  margin-bottom:28px;
}

.sub-text strong{
  color:var(--blue);
}

form{
  max-width:520px;
  margin:0 auto;
}

.form-row{
  height:54px;
  border:1.5px solid var(--border);
  border-radius:10px;
  display:flex;
  align-items:center;
  margin-bottom:14px;
  background:#fff;
}

.form-row:focus-within{
  border-color:var(--green);
  box-shadow:0 0 0 4px rgba(15,155,142,.08);
}

.icon-box{
  width:56px;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#718096;
  font-size:17px;
  border-right:1px solid var(--border);
}

.form-row input,
.form-row select{
  flex:1;
  border:none;
  outline:none;
  height:100%;
  padding:0 16px;
  font-size:15px;
  font-family:inherit;
  color:var(--text);
  background:transparent;
}

.form-row input::placeholder{
  color:#8a95a5;
}

.form-row select{
  cursor:pointer;
  color:#667085;
}

.eye-icon{
  padding-right:16px;
  color:#718096;
  cursor:pointer;
}

.terms{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:18px 0;
  font-size:14px;
  line-height:1.5;
  color:#4b5b6b;
}

.terms input{
  margin-top:3px;
  accent-color:#0047d9;
}

.terms a{
  color:#0047d9;
  font-weight:700;
  text-decoration:none;
}

.signup-btn{
  width:100%;
  height:54px;
  border:none;
  border-radius:10px;
  background:#0047d9;
  color:#fff;
  font-size:17px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(15,155,142,.25);
}

.signup-btn i{
  margin-right:8px;
}

.signup-btn:hover{
  transform:translateY(-1px);
}

.divider{
  display:flex;
  align-items:center;
  gap:16px;
  margin:20px 0;
}

.divider span{
  flex:1;
  height:1px;
  background:var(--border);
}

.divider p{
  color:#667085;
  font-size:14px;
  font-weight:700;
}

.google-btn{
  width:100%;
  height:54px;
  border:1.5px solid var(--border);
  border-radius:10px;
  background:#fff;
  color:#23395d;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.google-btn img{
  width:24px;
  height:24px;
}

.login-text{
  text-align:center;
  margin-top:20px;
  font-size:15px;
  color:#667085;
}

.login-text a{
  color:#0047d9;
  font-weight:800;
  text-decoration:none;
}

.signup-right{
  background:#eef6f8;
  border-left:1px solid var(--border);
  padding:42px 35px;
  text-align:center;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.dot-pattern{
  position:absolute;
  width:160px;
  height:160px;
  top:25px;
  right:25px;
  opacity:.25;
  background-image:radial-gradient(#0f9b8e 2px, transparent 2px);
  background-size:16px 16px;
}

.big-logo{
   width:110px;
  height:110px;
  object-fit:contain;
  margin-bottom:12px;
}

.signup-right h2{
  font-size:34px;
  font-weight:900;
  line-height:.95;
  color:#07337c;

}

.signup-right h2 span{
  color:#25b24b;
}

.yellow-line{
  width:75px;
  height:4px;
  background:var(--yellow);
  border-radius:20px;
  margin:18px auto 24px;
}

.signup-right h3{
  font-size:28px;
  font-weight:900;
  color:#12284c;
  line-height:1.2;
  margin-bottom:15px;
}

.signup-right h3 span{
  color:var(--green);
}

.signup-right p{
  max-width:330px;
  color:#536274;
  font-size:15px;
  line-height:1.6;
}

.signup-footer{
  background:#062c5f;
  color:#fff;
  padding:38px 55px 0;
}

.footer-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr 1fr;
  gap:34px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.footer-logo img{
  width:50px;
  height:50px;
  object-fit:contain;
}

.footer-logo h3{
  font-size:23px;
  font-weight:900;
  line-height:.95;
  color:#ffffff;
}

.footer-logo h3 span{
  color:#25b24b;
}

.footer-brand p,
.signup-footer p{
  color:#dce8f5;
  font-size:14px;
  line-height:1.6;
}

.signup-footer h4{
  color:#f7c948;
  font-size:17px;
  margin-bottom:14px;
}

.signup-footer a{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  margin-bottom:11px;
}

.signup-footer a:hover{
  color:#f7c948;
}

.signup-footer p i{
  color:#f7c948;
  margin-right:8px;
}

.socials{
  display:flex;
  gap:12px;
}

.socials a{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0f9b8e;
  color:#fff;
  margin-bottom:0;
}

.copyright{
  max-width:1200px;
  margin:28px auto 0;
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  color:#dce8f5;
  font-size:14px;
}

@media(max-width:1100px){
  .signup-navbar{
    padding:0 25px;
  }

  .nav-links{
    display:none;
  }

  .signup-card{
    grid-template-columns:1fr;
  }

  .signup-right{
    display:none;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:650px){
  .signup-navbar{
    height:auto;
    padding:18px;
  }

  .brand img{
    width:48px;
    height:48px;
  }

  .brand h2{
    font-size:20px;
  }

  .login-btn{
    padding:10px 16px;
    font-size:14px;
  }

  .signup-main{
    padding:28px 14px;
  }

  .signup-left{
    padding:32px 20px;
  }

  .signup-left h1{
    font-size:29px;
  }

  .sub-text{
    font-size:14px;
  }

  .form-row{
    height:52px;
  }

  .icon-box{
    width:50px;
  }

  .form-row input,
  .form-row select{
    font-size:14px;
    padding:0 12px;
  }

  .terms{
    font-size:13px;
  }

  .signup-footer{
    padding:34px 24px 0;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:26px;
  }
}

.signup-error{
  display:block;
  color:#dc2626;
  font-size:13px;
  margin-top:6px;
  text-align:left;
}

.signup-error{
  display:block;
  color:#dc2626;
  font-size:13px;
  margin-top:4px;
  margin-bottom:8px;
  text-align:left;
}

.mini-otp-btn,
.mini-verify-btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  margin-right: 10px;
  white-space: nowrap;
}

.mini-otp-btn {
  background: #2563eb;
  color: #fff;
}

.mini-verify-btn {
  background: #16a34a;
  color: #fff;
}

#emailOtpMessage {
  display: block;
  margin-top: 4px;
}

#emailOtpRow {
  display: none;
}