* {
    list-style-type: none;
    text-decoration: none;
}

/* IMG FUNDO */
body {
    background-image: url(../img/backgrounds/background-auth.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    min-height: 100vh;
    font-family: var(--fonte-montserrat);
    display: flex;
    align-items: center;
}



p {
    margin: 0;
}

/* FORMULARIO */
#form-password-reset {
    background: rgba(30, 30, 30, .5);
    width: 555px;
    padding: 50px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 1.8em;
    width: 37vw;
    max-width: 555px;
    height: 100%;
    padding: 32px;
    margin-left: clamp(132px, 16.11vw, 232px);
}

.img-logo {
    width: 90%;
    height: 77px;
    margin: 0 auto;
    margin-bottom: .5em;
}

p {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

#form-password-reset h2{
    color: var(--cor-branca);
    text-align: center;
}

p label {
    color: var(--cor-branca);
    font-size: var(--texto-desktop);
}

#input-email {
    border: none;
    outline: none;
    width: 100%;
    height: 50px;
    padding-left: 23px;
    background-color: var(--fundo-inputs);
    border-radius: 8px;
    font-family: var(--fonte-montserrat);
    color: var(--cor-branca);
    transition: .3s ease;
}

#input-email:focus-within {
    box-shadow: 0px 0px 1px 2px var(--cor-branca);
}

#input-email::placeholder {
    color: #ffffff70;
}

/* RECAPTCHA */
.recaptcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--cor-branca);
    padding: .5em;
    border-radius: 5px;
}

.recaptcha input {
    width: 1.5em;
    height: 1.5em;
}

.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-logo img {
    width: 2em;
}

.recaptcha-logo small {
    font-size: 8px;
}

/* BOTOES */
div {
    display: flex;
    gap: 1em;
}

.container-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-voltar {
    border: none;
    outline: none;
    width: 100%;
    max-width: 213px;
    height: 60px;
    border-radius: 30px;
    background-color: transparent;
    border: 2px solid var(--cor-destaque);
    font-family: var(--fonte-montserrat);
    font-size: 18px;
    color: var(--cor-destaque);
    transition: .3s ease;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn-voltar:hover {
    background-color: #465210;
}

.botao {
    border: none;
    outline: none;
    width: 100%;
    max-width: 213px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--cor-destaque);
    font-family: var(--fonte-montserrat);
    font-size: 18px;
    color: #1D0F28;
    cursor: pointer;
    transition: .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1340px) {
    body{
        justify-content: center;
    }

    #form-password-reset {
        width: 90%;
        margin: 0;
    }

}

@media (max-width: 768px) {
    
}

@media (max-width: 576px) {
    body {
        background-position: 90% 0;
    }

    #form-password-reset {
        width: 90%;
        margin: 0 auto;
    }
}