/* RESET */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.login-hero {
  height: 100vh;
  background: url("../images/style1/2.webp") center/cover no-repeat;
  position: relative;
}

/* DARK OVERLAY */
.login-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35)
  );
}

/* LEFT CONTENT */
.login-left {
  position: relative;
  z-index: 2;
}

.login-left h1 {
  font-size: 42px;
  font-weight: 700;
}

.login-left h1 span {
  color: #1f4fd8;
}

.login-left .tagline {
  max-width: 420px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* LOGIN CARD */
.login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 36px 32px;
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

/* FORM */
.login-card h4 {
  font-weight: 600;
}

.login-card .form-label {
  font-size: 13px;
  opacity: 0.9;
}

.login-card .form-control {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  height: 46px;
}

.login-card .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.login-card .form-control:focus {
  background: transparent;
  border-color: #1f4fd8;
  box-shadow: none;
}

/* BUTTONS */
.login-card .btn-primary {
    background: #1f4fd8;
    border: none;
    height: 46px;
    font-weight: 600;
    line-height: 35px;
}
.login-card .btn-primary:hover {
  background: #163bb3;
}

.login-card .btn-outline-light {
    height: 46px;
    border-color: rgba(255,255,255,0.6);
    line-height: 30px;
}

/* NOTE */
.login-note {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .login-left {
    display: none;
  }

  .login-card {
    margin: auto;
  }

  .login-overlay {
    background: rgba(0,0,0,0.65);
  }
}


.otp-input {
    width: 50px !important;
    border: none;
    border: 1px solid rgba(255,255,255,0.4);
    margin: 0 10px;
    text-align: center;
    background-color: transparent;
    line-height: 28px;
    padding-bottom: 17px;
    padding-top: 26px;
    font-size: 24px;
} 
.otp-input:focus { 
    border-bottom: 3px solid orange; 
    outline: none; 
} 

.leftimage img {
    width: 100%;
    padding: 0px;
    background: #fff;
    margin: 50px 0;
    border-radius: 15px;
}



