.card-header-login {
    border-bottom: none;
}

.click:hover {
    cursor: pointer;

}

.input-border {
    border-radius: 20px;
    border: none;
}

.button {
    background: rgba(253, 251, 251, 0.747);
    width: 35px;
    height: 20px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.button::before {
    position: absolute;
    content: '';
    background-color: #ffffff;
    width: 11px;
    height: 11px;
    border-radius: 10px;
    margin: 5px;
    transition: 0.2s;
}

input:checked+.button {
    background-color: #DC3545;
}

input:checked+.button::before {
    transform: translateX(14px);
}

input {
    display: none;
}