/* Fundo e estilo geral */
body {
    margin: 0;
    padding: 0;
    background-image: url("/static/images/background.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

/* Container do formulário */
.forgot-password-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    width: 350px;
    text-align: center;
}

/* Estilos para o título */
.forgot-password-container h2 {
    margin-bottom: 20px;
    color: #0056b3;
}

/* Campos de entrada */
.forgot-password-input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #aaa;
    border-radius: 5px;
    font-size: 16px;
}

/* Botão */
.forgot-password-button {
    width: 100%;
    padding: 12px;
    background-color: rgba(0, 110, 255, 0.8);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.forgot-password-button:hover {
    background-color: rgba(0, 110, 255, 0.6);
}
