:root {
    --bs-danger: white; /* Changed the danger color to white */
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--bs-danger) !important; /* Changed background to white */
}

.user_card {
    height: 450px;
    width: 350px;
    margin-top: auto;
    margin-bottom: auto;
    background: #dc3545; /* Changed background to #dc3545 */
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
}

/* .brand_logo_container {
    position: absolute;
    height: 150px;
    width: 320px;
    top: -90px;
    border-radius: 2%;
    background: white; Changed to white 
    padding: 10px;
    text-align: center;
} */

.brand_logo_container {
    position: absolute;
    height: 170px;
    width: 170px;
    top: -80px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    text-align: center;
}

.brand_logo {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    border: 1px solid #dc3545;
}

.form_container {
    margin-top: 50px;
}

.login_btn {
    color: #dc3545 !important; /* Changed text color to #dc3545 */
    background-color: white !important; /* Changed background color to white */
}

.login_btn:hover {
    box-shadow: none !important;
    font-weight: bold;
}

.login_container {
    padding: 0 2rem;
}

.input-group-text {
    background: white !important; /* Changed background to white */
    color: #dc3545 !important; /* Changed text color to #dc3545 */
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.input_user,
.input_pass {
    box-shadow: none !important;
    outline: 0px !important;
    border-radius: 0 0.25rem 0.25rem 0 !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: white !important; /* Changed to white */
}
