:root{
  --navy:#001b4f;
  --navy2:#00266f;
  --yellow:#ffc107;
  --green:#2e9b43;
  --text:#07183d;
  --muted:#667085;
  --border:#dce5f2;
  --light:#f7fbff;
  --shadow:0 18px 45px rgba(0,27,79,.12);
}

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

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at left 28%, rgba(0,45,120,.08), transparent 22%),
    radial-gradient(circle at right 30%, rgba(0,45,120,.08), transparent 20%),
    #f8fbff;
}

.login-navbar{
  height:118px;
  background:linear-gradient(180deg,#031735,#00245f);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 54px;
  color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.brand{
  display:flex;
  align-items:center;
  gap:0px;
  text-decoration:none;
  color:#fff;
}

.brand img{
  width:50px;
  height:50px;
  font-size:24px;
  font-weight:800;
  object-fit:contain;
   filter: drop-shadow(0 0 6px rgba(255,255,255,0.35));

}

.brand h2{
  font-size:24px;
  line-height:.95;
  font-weight:900;
  letter-spacing:.5px;
}

.brand h2 span{
  color:var(--yellow);
}

.brand p{
  font-size:13px;
  margin-top:8px;
  font-weight:600;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  list-style:none;
  font-size:16px;
  font-weight:600;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
}

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

.top-login-btn{
  background:transparent;
  color:#fff;
  border:2px solid var(--yellow);
  padding:15px 28px;
  border-radius:12px;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
  text-decoration: none;
}

.top-login-btn i{
  color:var(--yellow);
  margin-right:8px;
}

.login-main{
  padding:60px 20px 40px;
  position:relative;
  overflow:hidden;
}

.login-main::before,
.login-main::after{
  content:"";
  position:absolute;
  width:135px;
  height:220px;
  top:110px;
  opacity:.35;
  background-image:radial-gradient(#8bb4e7 2px, transparent 2px);
  background-size:18px 18px;
}

.login-main::before{
  left:18px;
}

.login-main::after{
  right:18px;
}

.login-card{
  max-width:1000px;
  min-height:620px;
  margin:0 auto;
  background:#fff;
  border:1px solid #e3ebf6;
  border-radius:18px;
  display:grid;
  grid-template-columns:1.25fr 1fr;
  overflow:hidden;
  box-shadow:var(--shadow);
  position:relative;
  z-index:2;
}

.login-left{
   padding:50px 35px;
  text-align:center;
}

.login-left h1{
  font-size:42px;
  font-weight:900;
  color:#07183d;
}

.small-line{
  width:86px;
  height:4px;
  background:var(--yellow);
  border-radius:20px;
  margin:22px auto 28px;
}

.sub-text{
  font-size:18px;
  line-height:1.65;
  color:#101b38;
  margin-bottom:55px;
}

.sub-text strong{
  color:#0047d9;
}

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

.input-group{
  height:76px;
  border:1.5px solid var(--border);
  border-radius:10px;
  display:flex;
  align-items:center;
  gap:20px;
  padding:0 24px;
  margin-bottom:28px;
  background:#fff;
}

.input-group:focus-within{
  border-color:#0b4fc5;
  box-shadow:0 0 0 4px rgba(11,79,197,.08);
}

.input-group i{
  font-size:23px;
  color:#07183d;
}

.input-group input{
  flex:1;
  border:none;
  outline:none;
  font-size:18px;
  color:#07183d;
  font-family:inherit;
}

.input-group input::placeholder{
  color:#7b8498;
}

.eye-icon{
  cursor:pointer;
}

.form-options{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:3px 0 34px;
  font-size:16px;
}

.form-options label{
  display:flex;
  align-items:center;
  gap:12px;
  color:#07183d;
}

.form-options input{
  width:22px;
  height:22px;
  accent-color:var(--navy);
}

.form-options a,
.signup-text a{
  color:#0047d9;
  font-weight:600;
  text-decoration:none;
}

.main-login-btn{
  height:76px;
  width:100%;
  border:none;
  border-radius:10px;
  background:#0047d9;
  color:#fff;
  font-size:22px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,27,79,.22);
}

.main-login-btn i{
  margin-right:10px;
}

.divider{
  display:flex;
  align-items:center;
  gap:22px;
  margin:32px 72px;
}

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

.divider p{
  font-size:18px;
  color:#07183d;
}

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

.google-btn img{
  width:28px;
}

.signup-text{
  margin-top:32px;
  font-size:17px;
}

.login-right{
  padding:45px 35px;
  background:linear-gradient(180deg,#f4f9ff,#eef6ff);
  border-left:1px solid #eef3fb;
  text-align:center;
}

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

.login-right h2{
  font-size:36px;
  line-height:.95;
  font-weight:900;
  color:#07337c;
}

.login-right h2 span{
  color:var(--green);
}

.tagline{
  font-size:20px;
  font-weight:600;
  margin-bottom:38px;
}

.feature{
  display:flex;
  gap:22px;
  align-items:center;
  text-align:left;
  padding:18px 0;
  border-bottom:1px solid #dbe6f4;
}

.feature:last-child{
  border-bottom:none;
}

.feature-icon{
  width:70px;
  height:70px;
  border:2px solid #c7d7ef;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:#fff;
  color:#07337c;
  font-size:28px;
  box-shadow:0 8px 18px rgba(0,27,79,.08);
}

.feature h3{
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
}

.feature p{
  font-size:16px;
  line-height:1.55;
  color:#1d2a44;
}

.security-box{
  max-width:820px;
  height:78px;
  margin:50px auto 0;
  background:rgba(255,255,255,.82);
  border:1px solid #edf2f8;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  font-size:20px;
  color:#07183d;
  box-shadow:0 10px 25px rgba(0,27,79,.06);
}

.security-box i{
  font-size:32px;
  color:#0d3d9a;
}

.security-box strong{
  color:#0a347f;
}

.login-footer{
  background:linear-gradient(180deg,#031735,#001b4f);
  color:#fff;
  padding:18px 50px 0;
}

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

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

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

.footer-logo h3{
  font-size:26px;
  line-height:.95;
  font-weight:900;
}

.footer-logo h3 span{
  color:var(--yellow);
}

.footer-logo p{
  font-size:10px;
  margin-top:5px;
}

.footer-brand > p{
  font-size:16px;
  line-height:1.5;
  color:#f4f8ff;
  max-width:330px;
}

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

.socials a{
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size:15px;
}

.socials a:nth-child(1){background:#1877f2;}
.socials a:nth-child(2){background:#e1306c;}
.socials a:nth-child(3){background:#ff0000;}
.socials a:nth-child(4){background:#229ed9;}

.login-footer h4{
  color:var(--yellow);
  font-size:18px;
  margin-bottom:12px;
}

.login-footer a{
  display:block;
  color:#fff;
  text-decoration:none;
  margin-bottom:12px;
  font-size:16px;
}

.login-footer a:hover{
  color:var(--yellow);
}

.login-footer p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:12px;
}

.login-footer p i{
  color:var(--yellow);
  margin-right:14px;
}

.copyright{
  max-width:1180px;
  margin:15px auto 0;
  padding-top:10px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.14);
  color:#e9eef7;
}

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

  .nav-links{
    display:none;
  }

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

  .login-right{
    display:none;
  }

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

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

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

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

  .brand p{
    font-size:10px;
  }

  .top-login-btn{
    display:none;
  }

  .login-main{
    padding:30px 14px;
  }

  .login-card{
    min-height:auto;
  }

  .login-left{
    padding:42px 22px;
  }

  .login-left h1{
    font-size:32px;
  }

  .sub-text{
    font-size:15px;
    margin-bottom:35px;
  }

  .input-group{
    height:64px;
    padding:0 16px;
    margin-bottom:18px;
  }

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

  .form-options{
    font-size:13px;
    gap:12px;
  }

  .main-login-btn{
    height:64px;
    font-size:18px;
  }

  .divider{
    margin:25px 35px;
  }

  .google-btn{
    height:58px;
    font-size:15px;
  }

  .security-box{
    height:auto;
    padding:18px;
    font-size:15px;
    text-align:center;
  }

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

  .login-footer{
    padding:35px 24px 18px;
  }
}
.login-left {
  padding: 42px 55px;
}

.login-left h1 {
  font-size: 36px;
}

.sub-text {
  margin-bottom: 35px;
}

form {
  max-width: 520px;
}

.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
}

.login-tabs button {
  height: 52px;
  border: none;
  background: #fff;
  color: #667085;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.login-tabs button i {
  margin-right: 8px;
}

.login-tabs .active {
  color: #0057ff;
  border-bottom: 3px solid #0057ff;
}

.field-label {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  color: #07183d;
  margin-bottom: 10px;
}

.phone-group {
  height: 54px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  background: #fff;
}

.phone-group span {
  width: 70px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1.5px solid var(--border);
  font-weight: 700;
}

.phone-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 18px;
  font-size: 15px;
  font-family: inherit;
}

.phone-group i {
  padding-right: 18px;
  color: #667085;
}

.send-otp-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 8px;
  background: #0057ff;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.send-otp-btn i {
  margin-right: 10px;
}

.otp-note {
  font-size: 13px;
  color: #667085;
  margin-top: 12px;
}

.input-group {
  height: 54px;
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 0 16px;
  gap: 16px;
}

.input-group i {
  font-size: 17px;
  color: #667085;
}

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

.form-options {
  margin: 4px 0 22px;
  font-size: 14px;
}

.form-options input {
  width: 16px;
  height: 16px;
}

.main-login-btn {
  height: 54px;
  border-radius: 8px;
  font-size: 16px;
  text-transform: none;
}

.divider {
  margin: 18px 0;
}

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

.google-btn {
  height: 54px;
  border-radius: 8px;
  font-size: 15px;
}

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

.signup-text {
  margin-top: 22px;
  font-size: 14px;
}

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

.otp-success{
  display:flex;
  align-items:center;
  gap:12px;
  background:#ecfdf3;
  border:1px solid #b7efc5;
  color:#15803d;
  padding:14px 18px;
  border-radius:8px;
  font-size:15px;
  font-weight:700;
  margin-bottom:22px;
  text-align:left;
}

.otp-success i{
  font-size:22px;
}

.otp-boxes{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:18px;
}

.otp-input{
  width:55px;
  height:55px;
  border:1.5px solid var(--border);
  border-radius:8px;
  text-align:center;
  font-size:22px;
  font-weight:600;
  outline:none;
}

.otp-input:focus{
  border-color:#0057ff;
  box-shadow:0 0 0 3px rgba(0,87,255,.12);
}

.resend-text{
  font-size:15px;
  color:#667085;
  font-weight:600;
  margin:18px 0;
}

.resend-text i{
  color:#0057ff;
  margin-right:8px;
}

#resendTimer{
  color:#0057ff;
  font-weight:800;
}

.resend-otp-btn{
  background:none;
  border:none;
  color:#0057ff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  padding:0;
}

.resend-otp-btn:disabled{
  color:#667085;
  cursor:not-allowed;
}