﻿html, body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
}

.body-content {
    padding-top: 0;
}

.body-content .section-form {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.body-content .section-form .container {
    display: flex;
    align-items: center;
}

.body-content .section-form.form-login .btn-show-pass {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.section-form.form-login {
    justify-content: center;
    align-items: center;
}

.remember-me-wrapper {
    width: 100%;
    /*border-radius: 12px;*/
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    margin-bottom: 24px;
    /*box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3), -3px -3px 6px rgba(255, 255, 255, 0.8);*/
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3), 0 0 1px rgba(255, 255, 255, 0.8);
}

.remember-me-wrapper:hover, .remember-me-wrapper:active {
    
}

.remember-me-wrapper input#remember-me {
    display: none;
}

.remember-me-wrapper input#remember-me:checked + .button {
    filter: none;
}

.remember-me-wrapper input#remember-me:checked + .button .dot {
    left: calc(100% - 24px - 6px);
    background-color: rgb(33, 37, 41);
}

.remember-me-wrapper .button {
    position: relative;
    width: 72px;
    height: 36px;
    border-radius: 60px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.remember-me-wrapper .button .dot {
    position: absolute;
    width: 24px;
    height: 24px;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3), -3px -3px 6px rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.3);
    will-change: left, background-color;
}

@keyframes deco-move {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
