:root {
    --primary-color: #FFBE00;
    --primary-hover: #E6AB00;
    --text-color: #000000E6;
    --secondary-text: #00000099;
    --background-color: #f3f2ef;
    --border-color: #0000001A;
    --hover-bg: #0000000A;
    --card-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.auth-left {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-content {
    width: 100%;
    max-width: 450px;
}

.auth-logo {
    height: 40px;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.auth-subtitle {
    font-size: 16px;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

.auth-form .form-label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
}

.auth-form .form-control {
    padding: 12px 15px;
    border-color: var(--border-color);
}

.auth-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 190, 0, 0.25);
    border-color: var(--primary-color);
}

.auth-form .input-group-text {
    background-color: white;
    border-right: none;
    color: var(--secondary-text);
}

.auth-form .form-control {
    border-left: none;
}

.toggle-password {
    border-left: none;
    background-color: white;
    color: var(--secondary-text);
}

.toggle-password:hover {
    background-color: var(--hover-bg);
    color: var(--text-color);
}

.forgot-password {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-color);
    font-weight: 500;
    padding: 12px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--text-color);
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
    z-index: 0;
}

.auth-divider span {
    background-color: white;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    color: var(--secondary-text);
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-color);
    border-color: var(--border-color);
}

.social-btn:hover {
    background-color: var(--hover-bg);
    color: var(--text-color);
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: var(--secondary-text);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

.auth-right {
    flex: 1;
    display: none;
}

.auth-image-container {
    height: 100%;
    background-image: url('../images/auth-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.auth-image-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    max-width: 400px;
}

.auth-image-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.auth-image-content p {
    font-size: 18px;
    line-height: 1.6;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.password-strength {
    font-size: 12px;
}

/* Responsive styles */
@media (min-width: 992px) {
    .auth-right {
        display: block;
    }
}

@media (max-width: 767px) {
    .auth-left {
        padding: 30px 20px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .auth-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .auth-form .form-control {
        padding: 10px 12px;
    }
    
    .btn-primary {
        padding: 10px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .auth-container {
        padding: 10px;
    }
    
    .auth-left {
        padding: 20px 15px;
    }
    
    .auth-logo {
        height: 30px;
    }
    
    .auth-title {
        font-size: 22px;
    }
    
    .auth-form .form-label {
        font-size: 13px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
} 