@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
}

.autenticacao {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #F5F5F5;
    background: linear-gradient(180deg, rgba(245, 245, 245, 1) 34%, rgba(150, 196, 246, 1) 73%);
}

.autenticacao-main {
    width: 500px;
    height: 500px;
    background-color: #F5F5F5;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 3px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.autenticacao-main-recuperar {
    width: 500px;
    height: 400px;
    background-color: #F5F5F5;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 3px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.autenticacao-main-recuperar form {
    width: 85%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.autenticacao-logo-recuperar {
    margin-bottom: 10px;
}

.autenticacao-info {
    width: 50%;
    height: 100%;
    background-image: url('./../../img/fundoAutenticacao.png');
    background-repeat: no-repeat;

    display: none !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.autenticacao-info-titulos {
    width: 85% !important;
    color: #fff;

    margin-top: 15%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.autenticacao-info-titulos div {
    width: 100%;
    border-left: 2px solid #fff;
    font-size: 2.5rem;
    font-weight: 600;
    padding-left: 8px;
}

.autenticacao-info-titulos p {
    width: 100%;
    padding: 0;
    font-weight: 1.2rem;
}

.div-caixa-texto {
    width: 50%;
    color: #fff;

    padding: 10px;
    background-color: #79aadd;
    border-radius: 5px;
    font-size: 1.5rem;
    text-align: center;

    margin-bottom: 50px;
}

.div-autenticacao-form {
    width: 100%;
    height: 100%;
    background-image: url('./../../img/fundoFormAutenticacao.png');
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.autenticacao-main div form {
    width: 60%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.autenticacao-titulos {
    width: 100%;
}

.autenticacao-titulos p {
    width: 100%;

    color: #7B7B7B;
    margin: 0;
    padding: 0;
    font-size: 19px;
}

.autenticacao-logo {
    color: #007AFF;
    font-size: 30px;
    font-weight: 600;
}

.main-inputs-autenticacao {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-inputs-autenticacao div {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.main-inputs-autenticacao > div > label {
    color: #434343;
    font-weight: 600;
    font-size: 15px;
}

.main-inputs-autenticacao > div > input {
    height: 20px;
    border: 1px solid #E6E6E6;
    background-color: #E9E8E8;
    padding: 5px 8px;
    border-radius: 3px;
}

.content-senha-login {
    width: 10%;
    position: relative;
}

.content-password {
    width: 100%;
}

.content-password input {
    height: 20px;
    border: 1px solid #E6E6E6;
    background-color: #E9E8E8;
    padding: 5px 8px;
    border-radius: 3px;
}

#password-view {
    top: 25px;
    right: 10px;
    cursor: pointer;
    user-select: none;
    position: absolute;
}

#password-view svg {
    margin-top: 5px;
    fill: #979797;
} 

.btn-autenticacao {
    width: 100%;

    display: flex;
    justify-content: center;
}

.btn-autenticacao button {
    width: 100%;
    font-size: 20px;

    padding: 8px 20px;
    background-color: #007AFF;
    border-radius: 3px;
    border: none;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 15px;
}

.btn-autenticacao button:hover {
    background-color: #004da0;
    cursor: pointer;
}

.ancora-autenticacao {
    text-align: end;
    font-size: 13px;
    text-decoration: none;
    color: #007AFF;
}

.ancora-autenticacao:hover {
    cursor: pointer;
    color: #004c9c;
}

@media only screen and (max-width: 500px) {
    .autenticacao-main {
        width: 90% !important;
    }

    .autenticacao-main div form {
        width: 80%;
    }

    .autenticacao-main-recuperar {
        width: 90% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .autenticacao-info {
        display: flex !important;
    }

    .autenticacao-main {
        width: 1100px;
    }

    .div-autenticacao-form {
        width: 50% !important;
    }
}


/*.autenticacao-main form {
    width: 75%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.autenticacao-titulos {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.autenticacao-titulos h1 {
    color: #181818;
    font-weight: 600;
    font-family: 20px;
}

.autenticacao-titulos p {
    color: #7B7B7B;
    margin: 0;
    padding: 0;
    font-size: 13px;
} 

.main-inputs-autenticacao {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-inputs-autenticacao div {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.main-inputs-autenticacao > div > label {
    color: #434343;
    font-weight: 600;
    font-size: 15px;
}

.main-inputs-autenticacao > div > input {
    height: 20px;
    border: 1px solid #E6E6E6;
    background-color: #E9E8E8;
    padding: 5px 8px;
    border-radius: 3px;
}

.ancora-autenticacao {
    text-align: end;
    font-size: 13px;
    text-decoration: none;
    color: #007AFF;
}

.ancora-autenticacao:hover {
    cursor: pointer;
    color: #004c9c;
}

.btn-autenticacao {
    width: 100%;

    display: flex;
    justify-content: center;
}

.btn-autenticacao button {
    width: auto;
    font-size: 20px;

    padding: 8px 20px;
    background-color: #007AFF;
    border-radius: 3px;
    border: none;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 15px;
}

.btn-autenticacao button:hover {
    background-color: #004da0;
    cursor: pointer;
}

.content-senha-login {
    width: 10%;
    position: relative;
}

.content-password {
    width: 100%;
}

.content-password input {
    height: 20px;
    border: 1px solid #E6E6E6;
    background-color: #E9E8E8;
    padding: 5px 8px;
    border-radius: 3px;
}

#password-view {
    top: 25px;
    right: 10px;
    cursor: pointer;
    user-select: none;
    position: absolute;
}

#password-view svg {
    margin-top: 5px;
    fill: #979797;
} */