/* AUTH PAGES STYLES (LOGIN & REGISTER) */
.rounded-xl {
    border-radius: 1.5rem !important;
}
.bg-dark {
    background-color: #0d2c4b !important;
}
.btn-dark {
    background-color: #0d2c4b;
    border-color: #0d2c4b;
    transition: all 0.3s ease;
}
.btn-dark:hover {
    background-color: #1a4a6e;
    border-color: #1a4a6e;
    box-shadow: 0 0.25rem 0.5rem rgba(13, 44, 75, 0.3);
}
/* Overrides for Auth Forms */
.form-control:focus,
.input-group-text:focus-within {
    border-color: #0d2c4b !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 44, 75, 0.25) !important;
}