/* Auth Styles */
body.auth-page {
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
}

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

.auth-header img {
    height: 60px;
    margin-bottom: 1rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.input-group-text {
    border-radius: 8px;
    background: transparent;
    border: 1px solid #dee2e6;
}

.btn-auth {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    width: 100%;
    background: #0d6efd;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
}

.auth-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #0d6efd;
}

.auth-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

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

.alert {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.2);
    color: #198754;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}
