html, body {
    font-family: 'Arial', sans-serif;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.card {
    border-radius: 10px;
    box-shadow: 0 0px 10px rgb(0 0 0 / 50%);
    overflow: hidden;
    width: 28%;
    background: #f4f4f4;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.card-header {
    text-align: center;
    font-weight: bold !important;
    font-size: 1.2rem;
}

.card-header img {
    width: 10px;
    margin-right: 10px;
}


.form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.form-check-input {
    margin-right: 5px;
}

.btn {
    font-size:1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
}

.btn-secondary {
    background-color: #00244b;
    color: #fff !important;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #004277;
}

.card-footer {
    text-align: right;
    /* padding: 10px 20px; */
}

.text-muted a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.text-muted a:hover {
    text-decoration: underline;
}

.text-sm {
    font-size: 16px;
}
.navbar-brand-img {           
    width:160px; 
    height: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left:22px;   
}

.footer 
{
    color: #fff; 
    padding: 20px; 
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 99%;
    margin-left: -10px;
}

label[for="email"] 
{
    font-weight: bold;
    display: block; 
    font-size: 1rem;
}

label[for="password"] 
{
    font-weight: bold;
    display: block; 
    font-size: 1rem;
}

.form-check-label{
    font-size: 1rem;
}

.card-footer a 
{
    font-size:1rem;
    text-decoration: none;
    color: #007bff; 
    font-weight: bold;
    transition: color 0.3s ease; 
}

.card-footer a:hover 
{
    color: #1f618d; 
}

a.text-dark.font-weight-bolder {
    text-decoration: none;
    color: #007bff; 
    font-weight: bold;
    transition: color 0.3s ease; 
}

.text-danger 
{
    color: red;
    font-size: 12px;
    margin-top: -15px;
}

.alert-success {
    background-color: #d4edda; 
    color: #155724; 
    border-color: #c3e6cb; 
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.alert-danger {
    background-color: #e6c3c3; 
    color: #a80606; 
    border-color: #e6c3c3; 
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1rem;
}



.border{
    border-width:0px;
}
    
.section-height-75{
    margin-top:25px;
}

.logo{
    max-width:175px;
    height:auto;
}

.left{
    float:left;
}

.right{
    float:right;
}

.form-control {
    border: 1px solid rgba(203, 208, 221, 1) !important;
    background-color: white !important;
}

.fw-bold{
    font-weight: 550 !important;
}

.goldBgBar{
    background: #FFCB08 !important;
    border: none !important;
    color: black !important;
    font-weight: 700 !important;
}

.btn-hover-effect:focus {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.btn-hover-effect:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.custom-footer {
    background-color: transparent !important;
    color: lightgrey !important;
}
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Darken the background with a 30% opacity black */
    z-index: 1; /* Ensure the overlay is below the form but above the background */
}
@media (max-width: 771px) {
    /* Change background to white on smaller screens */
    .bg-gray-100 {
        background-color: white !important;
    }

    /* Center the login container horizontally and vertically */
    .flex {
        justify-content: center;
        align-items: center;
        flex-direction: column;  /* Ensure vertical centering */
    }

    /* Set login form width to 90% for smaller screens */
    .lg\:w-5\/12 {
        width: 90% !important; /* Adjust width to fit small screens */
        box-shadow: 0 4px 15px rgba(104, 104, 104, 0.5) !important;
    }

    /* Make sure the login container is centered */
    .w-full {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Add padding for better spacing */
    .p-8 {
        padding: 1.5rem !important;
    }

    /* Center logo */
    .logo {
        max-width: 120px;
    }

    /* Adjust the form width and make it responsive */
    .form-control {
        width: 100% !important; /* Ensure form inputs take full width */
    }

    /* Adjust button for smaller screens */
    .btn {
        width: 100% !important;
    }

    .goldBgBar {
        background: #FFCB08 !important;
        border: none !important;
    }

    .custom-footer {
        display: none;
    }
}