      :root {
            --primary-color: #4361ee;
            --primary-dark: #3a56d4;
            --secondary-color: #7209b7;
            --success-color: #4cc9f0;
            --danger-color: #f72585;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --border-color: #dee2e6;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
           
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        
      
.login-wrapper {
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 30px;
  box-shadow: 0px 0px 2px #d1d1d169;
  border-radius: 20px;
}

/* LEFT IMAGE */
.left-img {
  width: 60%;
  text-align: center;
}



/* RIGHT FORM */
.login-form {
  width: 40%;
  
}

.login-form h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}

.login-form p {
  color: #6b7280;
  margin-bottom: 25px;
  font-size: 14px;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.options label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: black;
}

.options a {
  text-decoration: none;
  color: #3b82f6;
}

        
        .alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
           
        }
        
        .alert-success {
            background-color: #22ca800f;
            color: #22ca80;
            border-left: 4px solid #22ca80;
        }
        
        .alert-danger {
            background-color: rgba(247, 37, 133, 0.1);
            color: var(--danger-color);
            border-left: 4px solid var(--danger-color);
        }
        
        .alert i {
            margin-right: 10px;
            font-size: 18px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
            font-size: 14px;
        }
        
        .required {
            color: var(--danger-color);
        }
        
        .input-group {
            position: relative;
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .input-group:focus-within {
            border-color: #c94c34;
            box-shadow:  0 0 0 3px rgb(248 92 62 / 13%);
        }
        
        .input-group-prepend {
            padding: 0 15px;
           
            border-right: 1px solid var(--border-color);
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .input-group-prepend i {
            color: var(--gray-color);
            font-size: 18px;
        }
        
        .form-control {
            flex: 1;
            border: none;
            padding: 14px 15px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            outline: none;
            background-color: transparent;
        }
        
        .password-toggle {
            padding: 0 15px;
            background: transparent;
            border: none;
            color: var(--gray-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .password-toggle:hover {
            color: #83281d;
        }
        
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
        }
        
        .remember-me input {
            margin-right: 8px;
        }
        
        .forgot-password {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .forgot-password:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        .btn-login {
            background-color: #964d44;
            color: white;
            border: none;
            padding: 12px;
            width: 100%;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-login:hover {
            background-color: #83281d;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        }
        
        .btn-login:active {
            transform: translateY(0);
        }
        
        .btn-login:disabled {
            background-color: #e0762f;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
       
        
        .login-footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--gray-color);
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .login-container {
                flex-direction: column;
                max-width: 500px;
            }
            
            .login-left {
                padding: 40px 30px;
            }
            
            .login-right {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .login-left, .login-right {
                padding: 30px 20px;
            }
            
            .login-left h1 {
                font-size: 26px;
            }
            
            .login-header h2 {
                font-size: 24px;
            }
            
            .remember-forgot {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .forgot-password {
                margin-top: 10px;
            }
        }