@font-face {
    font-family: "TangoSans";
    src: url("../fonts/tangosans/TangoSans.ttf") format("truetype");
}

:root {
    --corPrincipal: #4367b3;
    --corTexto: #545454;
    --input-color: #e8e8e8;
}

main {
    width: 100%;
    display: flex;
    height: 100vh;
}

.banner {
    width: 55%;
    height: 100%;
    background-color: var(--corPrincipal);
    display: flex;
    align-items: center;
    justify-content: center;

}

.image_login {
    width: 40%;
    margin-top: 1rem;
}

.content_login {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.text_banner {
    width: 100%;
    text-align: center;
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text_banner h1 {
    font-size: 35px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;

}

.text_banner h3 {
    font-size: 25px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;
    margin-top: 1rem;
}

.text_banner h4 {
    color: #545454;
    font-family: arial;
}

.text_banner a {
    text-decoration: none;
    color: var(--corPrincipal);
    margin-top: 1rem;
    font-family: 'TangoSans';
}

hr {
    width: 60%;
}

.input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
}


.texto h1 {
    font-size: 30px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;

}

.form-control,
.form-select {
    background-color: var(--input-color);
    max-width: 400px;
    height: 40px;
}

label {
    margin-top: 1rem;
}

label,
input,
select {
    font-family: Arial;
}

.button {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 74%;

}

.reset a {
    color: var(--corPrincipal);
    text-decoration: none;
    font-family: arial;
    margin-bottom: 1rem;
}

.botao {
    width: 28%;
    padding: 1rem;
    font-family: 'TangoSans', sans-serif;
    height: 50px;
    font-size: 20px;
    border: none;
    background-color: var(--corPrincipal);
    color: #ffff;
    border-radius: 5px;
}

@media(320px <=width <=480px) {
    .banner {
        display: none !important;
    }

    .content_login {
        width: 100%;
    }

    main {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .text_banner {
        width: 90%;
        text-align: center;
        margin-top: 0;

    }

    .text_banner h1 {
        font-size: 30px;
        width: 100%;
        max-width: 400px;
    }

    form {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .botao {
        width: 38%;
        font-size: 15px;

    }

    .inputs {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .form-label {
        width: 80%;
        font-size: 18px;
    }

    .form-control {
        background-color: var(--input-color);
        width: 80%;
        height: 40px;
    }

    .reset {
        width: 70%;
    }
}

@media(481px <=width <=1024px) {

    main {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .text_banner {
        width: 90%;
        text-align: center;
        margin-top: 0;

    }

    .text_banner h1 {
        font-size: 30px;
        width: 100%;
        max-width: 400px;
    }

    form {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .botao {
        width: 38%;
        font-size: 15px;

    }

    .inputs {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .form-label {
        width: 80%;
        font-size: 18px;
    }

    .form-control {
        background-color: var(--input-color);
        width: 80%;
        height: 40px;
    }

    .reset {
        width: 70%;
    }
}