* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none !important;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}
@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: translateY(-2rem);
                transform: translateY(-2rem);
        opacity: 0;
    }
}
@keyframes fadeIn {
    0% {
        -webkit-transform: translateY(-2rem);
                transform: translateY(-2rem);
        opacity: 0;
    }
}
.login-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem;
}
.login-form.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.login-form form {
    width: 50rem;
    padding: 4rem;
    background: #fff;
    text-align: center;
    position: relative;
    -webkit-animation: fadeIn .2s linear;
            animation: fadeIn .2s linear;
}
.login-form form #close-login-form {
    position: absolute;
    top: -4rem;
    right: 0;
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
}
.login-form form #close-login-form:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}
.login-form form .logo {
    font-size: 2.5rem;
    color: #FF4A17;
    font-weight: bolder;
}
.login-form form h3 {
    padding: 1rem 0;
    font-size: 2rem;
    color: #263D4D;
    margin-top: 1rem;
}
.login-form form .box {
    width: 100%;
    padding: 1.2rem 1.4rem;
    border: 0.1rem solid #512a10;
    font-size: 1.6rem;
    margin: 1rem 0;
}
.login-form form .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .5rem;
    margin: 1rem 0;
}
.login-form form .flex label {
    font-size: 1.5rem;
    line-height: 2;
    color: #666;
    margin-bottom: 0;
    cursor: pointer;
}
.login-form form .flex a {
    font-size: 1.5rem;
    color: #512a10;
    margin-left: auto;
}
.login-form form .flex a:hover {
    text-decoration: underline !important;
}
.login-form form .link-btn {
    width: 100%;
    margin-bottom: 2rem;
}
.login-form form .account {
    padding: 1.5rem .5rem;
    background: #eee;
    font-size: 1.5rem;
    line-height: 2;
    color: #666;
    margin-bottom: 0;
}
.login-form form .account a {
    color: #512a10;
}
.login-form form .account a:hover {
    text-decoration: underline !important;
}
.button-login {
    align-self: center;
    background-color: #fff;
    background-image: none;
    background-position: 0 90%;
    background-repeat: repeat no-repeat;
    background-size: 4px 3px;
    border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
    border-style: solid;
    border-width: 2px;
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    box-sizing: border-box;
    color: #41403e;
    cursor: pointer;
    display: inline-block;
    font-family: Neucha, sans-serif;
    font-size: 1.7rem;
    line-height: 23px;
    margin-top: 1rem;
    outline: none;
    padding: 1rem 3rem;
    text-decoration: none;
    transition: all 235ms ease-in-out;
    border-bottom-left-radius: 15px 255px;
    border-bottom-right-radius: 225px 15px;
    border-top-left-radius: 255px 15px;
    border-top-right-radius: 15px 225px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.button-login:hover {
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
    transform: translate3d(0, 2px, 0);
}
.button-login:focus {
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
}

.form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23512a10'/%3e%3c/svg%3e");
    border-color: #512a10;
}
.form-check-input:focus {
    border-color: #512a10;
    outline: 0;
    box-shadow: none;
}  
.form-check-input:checked {
    background-color: #512a10;
    border-color: #512a10;
}
.form-switch .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23512a10'/%3e%3c/svg%3e");
    border-color: #512a10;
}
        