@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-image: url('../../img/fundoAutenticacaoLogin.png');
    background-repeat: no-repeat;
}

.autenticacao-main {
    width: 500px;
    height: 480px;

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

.autenticacao-main-recuperar {
    width: 460px;
    height: 460px;
    background-color: #ffffff;

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

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

.autenticacao-main-recuperar > form {
    width: 85%;
    height: auto !important;

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

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

.autenticacao-info {
    width: auto;
    height: 100%;

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

.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% !important;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #E6E6E6;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

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

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

.autenticacao-titulos {
    width: 100%;
}

.autenticacao-titulos > h1 {
    width: 100%;
    color: #434343;
    font-size: 2rem;
}

.autenticacao-titulos p {
    width: 100%;

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

.autenticacao-logo {
    color: #4B8596;
    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: #F3F7F8;
    padding: 5px 8px;
    border-radius: 5px;
}

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

.content-password {
    width: 100%;
}

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

.content-password > input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #F3F7F8 inset;
  -webkit-text-fill-color: #000;
  transition: background-color 5000s ease-in-out 0s;
}

#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: #4B8596;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 15px;
}

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

.btn-autenticacao-solicitar {
    width: 100%;

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

.btn-autenticacao-solicitar button {
    width: 100%;

    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-solicitar-senhar {
    background-color: #4B8596;
    color: #fff;
    border: none;
    font-size: 15px;
}

.btn-solicitar-senhar:hover {
    background-color: #004053;
    cursor: pointer;
}

.btn-voltar-login {
    background-color: transparent; 
    border: none; 
    color: #7B7B7B;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 13px;
}

.btn-voltar-login:hover {
    color: #434343;
    cursor: pointer;
    background-color: #eeeeee;


    svg {
        fill: #434343;
    }
}

.ancora-autenticacao {
    text-align: end;
    font-size: 13px;
    text-decoration: none;
    color: #4B8596;
    font-weight: 500;
}

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

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

    }

    .autenticacao-main > .div-autenticacao-form {
        width: 100% !important;
    }


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

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

    .autenticacao-main {
        width: 1000px;

        display: flex;
        flex-direction: row;
    }

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