/* Custom styles to enhance Bootstrap 5 */
.card {
    border: none;
    border-radius: 10px;
}

.card-body {
    transition: all 0.3s ease;
}

.min-vh-100 {
    min-height: 100vh;
}

/* Custom focus styles */
.form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
}

/* Custom button styles */
.btn-primary {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #3a7bc8;
    border-color: #3a7bc8;
}

/* Logo sizing */
.card img.img-fluid {
    transition: transform 0.3s ease;
}

.card img.img-fluid:hover {
    transform: scale(1.05);
}

/* Custom text colors */
a.text-decoration-none {
    color: #4a90e2;
    transition: color 0.3s ease;
}

a.text-decoration-none:hover {
    color: #3a7bc8;
}

.excaptcha-refresh {
    margin-left: 5px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .card-body {
        padding: 1.5rem;
    }
}