*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
}


html,body {
    height: 100%;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */

    background-image: url(img/bg1.png);
    background-size: cover;
    background-position: center;
    overflow-y: hidden;
    overflow-x: hidden;
}

main{
    display: flex;
    width: 100%;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.primary{
    position: relative;
    width: 50%;
    height: 100%;

}

.img-primary{
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    left: 12%;
}

.primary img{
    width: 800px;

}

.secundary{
    display: flex;
    width: 60%;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.principal{
    width: 400px;
    border-radius: 10px;
    padding: 30px 40px;
    background-color: rgba(232, 208, 236, 0.2);
    box-shadow: rgba(190, 2, 228, 0.2) 0px 20px 60px;
    border: 1px solid #833197;
    color: #fff;
    backdrop-filter: blur(5px);
}

.logo{
    width: 100%;
    text-align: center;
}

.logo img{
    width: 250px;
}

.input-box{
    position: relative;
    width: 100%;

}

.input-box:not(:first-child) { margin: 30px 0; }

.input-box input{
    position: relative;
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: #fbddff;
    padding: 30px;
    outline: none;
    border: 1px solid #8d499e;
    border-radius: 40px;
    background-color: transparent;

}

.input-box input::placeholder{
    color: rgba(171, 100, 199, 0.534);
}

.input-box i{
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
color: #ecaaf5;

}

.remember-forgot {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    color: #fff;
}

.remember-forgot label input{
    accent-color: #fff;
    text-decoration: none;
    color: #fff;

}

.remember-forgot a{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.remember-forgot a:hover{
    text-decoration: underline;

}

button{
    width: 100%;
    height: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(235, 131, 12, 0.2);
    border: 1px solid rgb(199, 86, 21);
    border-radius: 40px;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.5;

}

button:hover{
    background-color: rgba(255, 240, 223, 0.2);
    border: 1px solid #f79dff;
    transition: 0.3s;

}

.register-link{
    text-align: center;
    font-size: 12px;
}

.register-link a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover{
    text-decoration: underline;
}


/*INÍCIO MEDIA QUERY */


@media(max-width: 821px){
    .mains{
        max-height: 100vh;
    }
    .primary{
        display: none;
    }

    .principal{
        display: flex;
        flex-direction: column;
        max-width: 300px;
        padding: 5px 5px;
        height: 400px;
        align-items: center;
        justify-content: center;
    }

    .logo img{
        width: 180px;
        margin-top: 30px;
    }

    .input-box{
        height: 40px;
    }

    .input-box input{
        height: 40px;
        font-size: 12px;
        padding: 20px;
    }

    .input-box i{
    font-size: 14px;
    }

    .remember-forgot {
        display: flex;
        align-items: center;
        font-size: 8px;

    }

    button{
        height: 40px;
        font-size: 14px;
    }

    .register-link{
        text-align: center;
        font-size: 10px;
        margin-bottom: 50px;
    }

}