/* Remove shadow effect when an input field is focused */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}


/* Custom Radio Button Styles */
.custom-radio .form-check-input:checked {
    background-color: #d1aa66 !important;
    border-color: #d1aa66 !important;
}

.custom-radio .form-check-input:checked::before {
    background-color: #d1aa66 !important;
}

.custom-radio .form-check-input {
    width: 1.5em !important;
    height: 1.5em !important;
}

.custom-radio .form-check-input:focus {
    box-shadow: 0 0 0 0.2em rgba(209, 170, 102, 0.582) !important;
}

.custom-radio .form-check-input:checked::after {
    border: 2px solid white !important;
}

.custom-radio .form-check-label {
    margin-left: 0.5em !important;
}





/* ====================  STYLES FOR LOGIN PAGE ===========================*/

.grayscale-logo {
    filter: grayscale(100%) brightness(0);
}

/* Fullscreen background */
.bg-cover {
    background-image: url('../images/Logincover.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-tight {
    max-width: 450px;
    /* Optional: Limit form width */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.96);
    /* Slight background overlay for readability */
    border-radius: 8px;
    /* Optional: Round corners */
}


.form-footer button {
    background-color: #d1aa66;
    color: white;
}

/* Optional: Adjust form layout for mobile responsiveness */
@media (max-width: 767px) {
    .container-tight {
        width: 90%;
        padding: 15px;
    }
}