/* Login Page Specific Styles */
body {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: auto;
}

.auth-container {
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 12px;
}

.auth-card {
    width: 100%;
}

.card {
    background: transparent;
    border: none;
}

.card-body {
    padding: 20px 0;
}

h2 {
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-bottom: 30px;
}

.social-login .btn {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.social-login .btn:first-child {
    background: #1877f2;
    color: white;
    border: none;
}

.social-login .btn:last-child {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.social-login .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    background: #ddd;
    flex: 1;
    margin: 0 10px;
}

.form-label {
    color: white;
}

.form-control {
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-check-label {
    color: white;
}

.form-check-input:checked {
    background-color: #FFD700;
    border-color: #FFD700;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px);
}

.text-primary {
    color: #FFD700 !important;
}

a {
    color: #FFD700;
    text-decoration: none;
}

a:hover {
    color: #FFD700;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.text-center {
    color: white;
}

/* Login Form */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

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

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 5px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .login-container {
        padding: 1.5rem;
    }
    
    .login-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .login-container {
        padding: 1rem;
    }
    
    .login-form {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .btn-login {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Global variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --light-color: #2566a7;
}

/* Button Styling */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }