body{
    background-image: url('https://boutiquetendencia.com/assets/img/bg-header.avif');
    background-size: cover;
    background-attachment: fixed;
}
.content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(46,31,39,.78);
}
.content-box{
    width: calc(100% - 2rem);
    margin: 0 auto;
    flex: 1;
}
.box{
    width:calc(100% - 2rem);
    max-width:320px;
    padding: 2rem 1.5rem;
    position: relative;
    margin-bottom: 36px;
    box-shadow: 0 0 16px rgba(16,18,32,.5);
    background-color: rgba(46,31,39,.78);
    border-radius: 6px;
    border: 1px solid var(--primary-3);
    color: var(--light-1);
}
.box-header{
    padding: 10px 0;
}
h1{
    width: fit-content;
    font-weight: 200;
    color: var(--light-1);
    margin:1rem auto;
    user-select: none;
    text-align: center;
}
form{
    width: 100%;
    padding-top: 20px;
}
.inputs{
    width: calc(100% - 2px);
    border-radius: 4px;
    background-color: var(--light-1);
}
.inputs span{
    cursor: pointer;
}
#inputs-login{
    margin-bottom: 16px;
}
#login{
    width: calc(100% - 10px);
    padding-left: 10px;
    border:none !important;
    height: 2rem;
    color: var(--dark-5);
    background-color: transparent;
}
#password{
    width: calc(100% - 10px);
    padding-left: 10px;
    border:none !important;
    height: 2rem;
    color: var(--dark-5);
    background-color: transparent;
}
.toggle-btn img{
    margin-right: 12px;
    user-select: none;
}
#unlook{
    display: none;
}
.remember{
    width: 100%;
    margin: 20px 0;
    color: var(--light-1);
    user-select: none;
    font-family: 'Poppins Light', sans-serif;
}
.remember input[type=checkbox]{
    margin-right: 6px;
    width: 16px;
    height: 16px;
}
.forgot{
    width: 100%;
    margin-top: 30px;
    color: var(--light-1);
    user-select: none;
    font-family: 'Poppins Light', sans-serif;
}
.forgot a{
    cursor: pointer;
    transition: .2s;
}
input:autofill,
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus{
    -webkit-text-fill-color: var(--dark-3) !important;
    transition: background-color 500000s ease-in-out 0s !important;
}
input[type=submit]{
    width: 100% !important;
    padding: 0;
    height: 44px;
    border:none !important;
    background-color: var(--primary-3) !important;
    color: var(--dark-4);
    font-weight: 600;
    border-radius: 4px;
}
.box-msg{
    width: 100%;
    color: var(--light-1);
    padding: 20px 0 0 0;
    text-align: center;
    display: none;
}
.lds-ripple{
    position: relative;
    width: 46px;
    height: 0;
    overflow: hidden;
    transition: height 0.1s ease-out;
    display: none;
}
.lds-ripple div {
    position: absolute;
    border: 3px solid var(--light-1);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.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: fit-content;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: 'Poppins Light', sans-serif;
    color: var(--light-1);
    letter-spacing: 1px;
}