﻿.login-auth-button {
    background-color: #003C84;
    color: #efefef;
    border: none;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
}

#section-auth .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

    #section-auth .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

#section-auth span {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    #section-auth span:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

#section-auth input:checked + span {
    background-color: rgb(85, 21, 138);
}

#section-auth input:focus + span {
    box-shadow: 0 0 1px rgb(255, 77, 211);
}

#section-auth input:checked + span:before {
    transform: translateX(26px);
}

#section-auth span.round {
    border-radius: 24px;
}

    #section-auth span.round:before {
        border-radius: 50%;
    }
