

.login-sec {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .login-left {
    width: 45%;
    flex-shrink: 0;
    align-self: stretch;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    background: #0d0d1a;
  }

  /* Smooth right-edge fade — blends into divider; top/bottom darken naturally */
  .login-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, #000000 100%);
    pointer-events: none;
    z-index: 1;
  }

  .login-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  
  .login-right {
    width: 53% !important;
    padding: 20px;
  }
  
  .login-main {
    border-radius: 25px;
    overflow: hidden;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.2);
  }
  
  .input-icon {
    position: absolute;
    top: 16px;
    right: 17px;
    width: 25px;
  }
  
  .text-small {
    font-size: 0.9rem;
  }
  
  .login-input {
    padding: 15px 48px 15px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid #1f1f1f;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border: 1px solid rgb(201, 201, 201);
    background: transparent;
    color: white !important;
  }
  
  ::placeholder {
    color: rgb(184, 184, 184) !important;
    opacity: 1;
    /* Firefox */
  }
  
  ::-ms-input-placeholder {
    /* Edge 12-18 */
    color: rgb(184, 184, 184) !important;
  }
  
  .btn-login {
    color: #ffffff;
    border: 0px solid;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px;
    background: linear-gradient(90deg, #7c3aed 0%, #4c1d95 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn-login:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #4c1d95 100%);
    color: #ffffff;
  }
  
  .bg-login {
    background: #0a0a0a;
    background-image: radial-gradient(circle at 20% 30%, #4c1d9520 0%, transparent 50%), radial-gradient(circle at 80% 70%, #7c3aed15 0%, transparent 50%);
  }
  
  @media (max-width:992px) {
    .login-left {
        width: 100% !important;
        display: none !important;
    }
  
    .login-right {
        width: 100% !important;
        padding: 20px;
    }
  }
  
  .login-mid {
    width: 1%;
  }
  
  .divider-login {
    width: 1px;
    background: rgb(9 79 110);
    background: linear-gradient(180deg, rgb(19 19 69) 0%, rgb(9 79 110) 50%, rgb(19 19 69) 100%);
    height: 100%;
  }
  
  .rem-chk {
    position: relative;
    top: 2px;
  }
  
  .fw-600 {
    font-weight: 600;
  }
  
  .login-heading {
    font-size: 17px;
  }

  .link-color{
    color: #a855f7;
    text-decoration: none;
  }
  
  .link-color:hover {
    color: #c084fc;
  }