.forgot-password {
    display: flex;
    justify-content: center;
    /* Centraliza na horizontal */
    align-items: center;
    /* Centraliza na vertical */
    width: 100vw;
    /* Garante que ocupa toda a largura da tela */
    height: 100vh;
    /* Ocupa toda a altura da tela */
    min-height: 100vh;
    color: #6A9C5C;
    /* Garante altura mínima em navegadores bugados */
}

.forgot-password__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 70%;
    height: 80%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    box-shadow: 1px 1px 8px rgba(93, 93, 93, 0.5)
}

.forgot-password__container h1 {
    margin-bottom: 50px;
    padding: 10px;
    font-weight: 300;
}

.forgot-password__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;

}

.forgot-password__form label {
    margin: 0 0 5px 20px;
}


.forgot-password__form input {
    background: rgba(255, 255, 255, 0.7);
    border: 0.5px solid #fff;
    border-radius: 20px;
    margin: 0 0 10px 0;
    padding: 10px;
    outline: none;
    color: #6A9C5C;
    box-sizing: border-box;
    box-shadow: 1px 1px 8px rgb(182, 182, 182, 0.5)
}

.forgot-password__form input:hover {
    box-shadow: 1px 1px 8px rgba(255, 255, 255, 1);
}

.forgot-password__form button {
    display: flex;
    justify-content: center;
    align-self: center;
    width: 150px;
    background: #6A9C5C;
    color: #ffff;
    font-weight: bold;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 20px;
    margin: 10px;
    padding: 10px;
    outline: none;
    /* define duração e propriedades a animar */
    transition: background-color 0.2s ease-in-out,
        border 0.2s ease-in-out, box-shadow 0.5s ease-in-out;
    box-sizing: border-box;
    box-shadow: 1px 1px 8px rgb(182, 182, 182, 0.5)
}

.forgot-password__form button:hover {
    background-color: #c1deaf;
    color: #6A9C5C;
    border: 0.5px solid #FFF;
    box-shadow: 1px 1px 8px rgba(255, 255, 255, 1);
}


@media (max-width: 900px) {
    .forgot-password__container {
        width: 90%;
    }

    .forgot-password__form {
        width: 80%;
        align-items: baseline;
    }

    .forgot-password__form input {
        width: 80%;
        align-items: center;
    }
}