*{
    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(255, 255, 255, 0.1);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
    backdrop-filter: blur(5px);
}


.logo{
    width: 100%;
    text-align: center;
}

.logo img{
    width: 220px;
}

.input-box{
    position: relative;
    width: 100%;
    margin: 15px 0;
}

.input-box input{
    position: relative;
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: #181818;
    padding: 20px;
    outline: none;
    border: 1px solid #ceb9a7;
    border-radius: 40px;
    background-color: transparent;

}

.input-box input::placeholder{
    color: #fadac4;
}

.input-box i{
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
color: #494139;

}

.remember-forgot {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #494139;
}

.remember-forgot label input{
    accent-color: #fff;
    text-decoration: none;
    color: #494139;
}

.remember-forgot a{
    text-decoration: none;
    color: #000;
    font-weight: 500;
    color: #494139;
}

.remember-forgot a:hover{
    text-decoration: underline;

}

button{
    width: 100%;
    height: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    background-color: rgb(212, 96, 29);
    border: 0;
    border-radius: 40px;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.5;

}

button:hover{
    background-color: #fff;
    color: #000;
    transition: 0.3s;

}

.register-link{
    text-align: center;
    font-size: 12px;
}

.register-link a{
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover{
    text-decoration: underline;
}


/*INÍCIO MEDIA QUERY */


@media(max-width: 821px){

    .principal{
        width: 300px;
        padding: 15px 20px;
    }

    .logo img{
        width: 180px;
    }

    .input-box{
        height: 40px;
    }

    .input-box input{
        height: 40px;
        font-size: 12px;
        padding: 10px;
    }

    .input-box i{
    font-size: 14px;
    }

    .remember-forgot {
        font-size: 12px;

    }

    button{
        height: 40px;
        font-size: 14px;
    }

    .register-link{
        text-align: center;
        font-size: 10px;
    }

}