#header-canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
}
.content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.box{
    width:calc(100% - 2.6rem);
    max-width:330px;
    padding: 1.3rem;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,.2), inset 30px 30px 30px rgba(255,255,255,1);
    background-color: var(--light-2);
    background-image: var(--light-gradient);
    border-radius:12px;
    color: var(--dark-4);
    z-index: 950;
}
.box-header{
   width: 100%;
}
.box-header img{
   width: 2.5rem;
}
.box-header-photo{
    width: 25%;
    aspect-ratio: 1 /1;
    background-color: var(--tertiary-5);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../img/bg-user-login.svg');
}
h1{
    width: fit-content;
    font-weight: 400;
    margin:1.75rem auto;
    text-align: center;
}
.form-login{
    width: 100%;
}
.inputs{
    width: 100%;
    border-radius: 6px;
    background-color: var(--light-1);
    border: 1px solid var(--light-3);
}
#inputs-login{
    margin-bottom: .5rem;
}
#email, #pass{
    border:none;
    height: 2.25rem;
    background-color: transparent;
    width: calc(100% - .5rem);
    padding-left: .5rem;  
}
.inputs span{
    cursor: pointer;
}
.form-login .toggle-btn img{
    width: .7rem;
    margin-right: .5rem;
    user-select: none;
}
.form-login #look{
    display: block;
}
.form-login #unlook{
    display: none;
}
.form-login .remember{
    width: 100%;
    margin: 1.3rem 0;
    user-select: none;
}
.form-login .remember input[type=checkbox]{
    margin-right: 6px;
    width: 16px;
    height: 16px;
}
.form-login button{
    width: 100%;
    height: 2.2rem;
    border:none;
    background-color: var(--primary-3);
    background-image: var(--primary-gradient);
    font-weight: 500;
    text-shadow: 2px 2px 3px rgba(0,0,0,.15);
    color: var(--light-1);
    border-radius: 6px;
}
.form-login .forgot{
    width: 100%;
    margin-top: 1.3rem;
    cursor: pointer;
}
.box-msg{
    width:100%;
    color: var(--quinary-3);
    border-radius: 6px;
    margin-top: 1.3rem;
    text-align: center;
    display: none;
}
.box-msg .lds-ripple{
    position: relative;
    width: 46px;
    height: 0;
    overflow: hidden;
    transition: height 0.1s ease-out;
    display: none;
}
.box-msg .lds-ripple div {
    position: absolute;
    border: 3px solid var(--tertiary-5);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.box-msg .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
    0%{
        top: 20px;
        left: 20px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9%{
        top: 20px;
        left: 20px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5%{
        top: 20px;
        left: 20px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100%{
        top: 0px;
        left: 0px;
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}
.box-footer{
    width: 100%;
    height:40px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 200;
    text-align: center;
    color: var(--light-1);
    letter-spacing: 1px;
}

/* ELEMENTOS DINÂMICOS */

.forms-popup{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.forms-popup .inputs{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    height: fit-content;
    padding: 0;
    margin: 0;
}
.forms-popup .input-verify{
    width: 100%;
    color: var(--dark-5);
}
.forms-popup input {
    width: calc(100% - 32px);
    padding: 6px 15px;
}
.forms-popup button {
    padding: 12px;
    background-color: var(--tertiary-3);
    color: var(--light-1);
    border-radius: 6px;
    border: none;
}
.forms-popup button{
    cursor: pointer;
}
.msg-form-return{
    text-align: center;
}
.form-register-a, .form-login-a{
    width: fit-content;
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 20px auto 0 auto;
    padding: 10px 0 10px 0;
    color: var(--primary-3);
}