  .nin-sec {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-image: url("../../images/Right.png");
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-position: center;
    }
    .login-card {
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
      padding: 30px;
      max-width: 420px;
      width: 100%;
      margin: 20px auto ;
    }
    .login-card .logo {
      text-align: center;
      margin-bottom: 20px;
    }
   .login-card .logo img {
    width: 115px;
}
    .login-card h4 {
      font-weight: 600;
      margin-bottom: 10px;
      text-align: center;
      color: #121F30;
    }
    .login-card p {
      text-align: center;
      color: #90979E;
      font-size: 14px;
      margin-bottom: 30px;
    }
    .form-control {
      border-radius: 12px;
      padding: 12px 15px;
    }
    .form-check-label {
      color: #90979E;
      font-size: 14px;
    }
    .forgot-link {
      font-size: 14px;
      color: #0666F9;
      text-decoration: none;
    }
    .btn-login {
      width: 100%;
      background: linear-gradient(180deg, #0666F9, #9BC2FD);
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 500;
      padding: 12px;
      margin-top: 10px;
      transition: 0.3s;
    }
    .btn-login:hover {
      opacity: 0.9;
    }
    .divider {
      text-align: center;
      margin: 20px 0;
      color: #90979E;
      font-size: 14px;
    }
    .social-login {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .social-btn {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid #DEDFE4;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      cursor: pointer;
      transition: 0.3s;
    }
    .social-btn:hover {
      background: #f8f9fa;
    }
    .register-text {
      text-align: center;
      margin-top: 15px;
      font-size: 14px;
      color: #90979E;
    }
    .register-text a {
      color: #0666F9;
      font-weight: 500;
      text-decoration: none;
    }