@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    font-family: "Lato", sans-serif;
    margin: 0;
    outline: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

main {
    position: relative;
    width: 100%;
    height: 100dvh;
    background: url(../img/background-login.svg);
    background-size: cover;
}

.content-form {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: auto;
    left: auto;
    width: 50%;
    height: 98.5%;
    border-radius: 20px 0px 0px 0px;
    background: #F9FAFA;
}

.content-form .container-form {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.container-form .logo {
    align-self: center;
    display: flex;
    align-items: center;
    gap: 1.5dvh;
}

.logo img {
    height: 5dvh;
}

.logo h1 {
    font-size: clamp(24px, 1.7dvw, 2dvw);
    color: #2E3DA3;
    font-weight: 700;
}

.container-form .content-acess {
    margin-top: 4dvh;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #E3E5E8;
    padding: 4dvh;
}

.content-acess h1 {
    font-size: clamp(20px, 1.3dvw, 1.8dvw);
    color: #1E2024;
    font-weight: 700;
}

.content-acess h3 {
    margin-top: .8dvh;
    font-size: clamp(12px, 1dvw, 1.5dvw);
    color: #535964;
    font-weight: 400;
}

.content-acess form {
    margin-top: 5dvh;
}

.content-acess .input-content {
    margin-bottom: 3dvh;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1dvh;
}

.input-content span {
    font-size: clamp(10px, .75dvw, 1dvw);
    color: #535964;
    font-weight: 700;
}

.input-content input {
    font-size: clamp(16px, 1dvw, 1.5dvw);
    border: none;
    border-bottom: 1px solid #E3E5E8;
    padding: 1dvh 0;
}

.button-black {
    cursor: pointer;
    width: 100%;
    font-size: clamp(14px, 1dvw, 1.5dvw);
    color: #F9FAFA;
    background: #1E2024;
    border-radius: 5px;
    border: none;
    padding: 1.8dvh;
    font-weight: 700;
}

.button-white {
    margin-top: 3dvh;
    cursor: pointer;
    width: 100%;
    font-size: clamp(14px, 1dvw, 1.5dvw);
    color: #1E2024;
    background: #E3E5E8;
    border-radius: 5px;
    border: none;
    padding: 1.8dvh;
    font-weight: 700;
}

@media (max-width: 768px) {
    .content-form {
        height: 96%;
        width: 100%;
        left: 0;
        border-radius: 20px 20px 0px 0px;
    }

    .content-form .container-form {
        width: 80%;
    }
    
    .container-form .content-acess {
        padding: 0;
        padding-top: 3dvh;
    }

    .content-acess > * {
        margin-left: 2dvh;
    }

    .input-content input, .button-black {
        width: 94.5%;
    }

    .button-white {
        width: 89.5%;
    }
}