
#box-login{
    width: 224px;
    margin: 0px auto;
    text-align: left;
    padding: 20px;
    box-shadow: 0px 6px 6px rgb(0 0 0 / 0.1);
    border-radius: 10px;
    background-color: #2b4658;

    
}

@media (max-width: 600px) {
    #box-login {
        padding: 15px;
    }

    form h4 {
        font-size: 1.1rem;
    }

    form input.form-control {
        font-size: 1rem;
    }

}

.checkbox {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: white;
    font-size: 0.9rem;
}

.checkbox input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #f4dc57;
    border-radius: 4px;
    margin-right: 8px;
    cursor: pointer;
    position: relative;
}

.checkbox input[type="checkbox"]:checked {
    background-color: #f4dc57;
}

.checkbox input[type="checkbox"]:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2b4658;
    position: absolute;
    top: 0;
    left: 3px;
    font-size: 12px;
}

.checkbox label {
    cursor: pointer;
}
