

.auth-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left Panel Styles */
.auth-left-panel {
    flex: 1;
    background: linear-gradient(135deg, #c19909 0%, #0aa73e 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.auth-illustration {
    max-width: 80%;
    margin-bottom: 2rem;
}

.auth-illustration img {
    width: 100%;
    height: auto;
}

.auth-welcome h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.auth-welcome p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Right Panel Styles */
.auth-right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.auth-form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .logo {
    margin-bottom: 1.5rem;
}

.auth-header .logo img {
    height: 50px;
}

.auth-header h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.auth-header p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Form Styles */
.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #7f8c8d;
    font-size: 1rem;
}

.form-control {
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #4b6cb7;
    box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.2);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    font-size: 1rem;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: #4b6cb7;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Button Styles */
.btn-auth {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #4b6cb7;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.btn-auth:hover {
    background-color: #3a5a9c;
    transform: translateY(-2px);
}

.btn-auth i {
    margin-right: 8px;
}




.social-auth i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    font-size: 0.95rem;
    color: #7f8c8d;
}

.auth-footer a {
    color: #4b6cb7;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alert Styles */
.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
    }
    
    .auth-left-panel {
        padding: 1.5rem;
    }
    
    .auth-right-panel {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .auth-form-container {
        padding: 1.5rem;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
}