/* Custom styles to enhance Bootstrap for the login page */
body {
    background-color: #E4FCF9;
}

.card {
    border-radius: 15px;
    background-color: white;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

.form-control:focus {
    border-color: #3D7B74;
    box-shadow: 0 0 0 0.25rem rgba(61, 123, 116, 0.25);
}

/* Custom button styles */
.btn-dark, 
.btn-outline-dark {
    background-color: #212529 !important;
    border-color: #212529 !important;
    color: white !important;
}

.btn-dark:hover, 
.btn-dark:focus,
.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background-color: #7FEFDF!important;
    border-color: #212529 !important;
    color: #424242 !important;
}

.btn-outline-dark {
    background-color: rgb(246, 246, 246) !important;
    color: #212529 !important;
}

.custom-btn {
    transition: all 0.3s ease;
}

.text-forget-password {
    color: #5d5d5d !important;
}

.text-forget-password:hover {
    color: #000000 !important;
    transition: all 0.5s ease;
}

.text-secondary {
    color: #5B5B5B !important;
}

label {
    text-align: left !important;
    display: block;
}
