/* Additional login-specific styles using Bootstrap 5 classes */
/* Most of the styling now comes from Bootstrap 5 and override.css */
/* Updated for Bilbolaget Brand */

/* Custom styling for the divider */
.position-relative hr {
    opacity: 0.1;
}

/* Custom form control styling - inherits from override.css */
/* These styles override the general form controls for login specific needs */
.form-control {
    border: 2px solid var(--bilbo-light-gray-1);
    border-radius: 8px;
    padding: 12px 16px;
    transition: border-color 0.3s ease;
    font-family: 'Monsal Gothic', sans-serif;
    font-weight: 350; /* Book weight */
}

.form-control:focus {
    border-color: var(--bilbo-red);
    box-shadow: 0 0 0 0.2rem rgba(var(--bilbo-red-rgb), 0.25);
}

/* Custom checkbox styling */
.form-check-input:checked {
    background-color: var(--bilbo-red);
    border-color: var(--bilbo-red);
}

/* Custom responsive adjustments */
@media (max-width: 768px) {
    .card .p-5 {
        padding: 2rem !important;
    }
}