body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f8f9fa; /* Cor de fundo opcional */
}

.forgot-password-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-reset {
    width: 100%;
}

.footer-links {
    text-align: center;
    margin-top: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #007bff;
}

.footer-links a:hover {
    text-decoration: underline;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(100, 100, 100, 0.4); /* cinza transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}