/* ========================================= */
/*    Estilos para a página forgot username  */
/* ========================================= */

/* Página de Forgot Username */
.forgot-username-page {
    max-width: 150rem;
    margin: 20rem auto;
    padding: 5rem;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

/* Cabeçalho */
.forgot-username-header {
    margin-bottom: 5rem;
}

.forgot-username-title {
    font-size: 8rem;
    font-weight: bold;
    color: #2e3d49;
    margin-bottom: 3rem;
}

.forgot-username-description {
    font-size: 4rem;
    color: #6c757d;
}

/* Instruções */
.forgot-username-instructions {
    margin-top: 5rem;
    text-align: left;
}

.forgot-username-steps {
    margin: 5rem 0;
    padding-left: 5rem;
    font-size: 4rem;
    color: #2e3d49;
}

.forgot-username-steps li {
    margin-bottom: 3rem;
}

.forgot-username-support {
    margin-top: 5rem;
    font-size: 4rem;
    color: #6c757d;
}

/* Link de suporte */
.forgot-username-support-link {
    display: inline-block;
    margin-top: 3rem;
    padding: 3rem 4rem;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 1rem;
    font-size: 4rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.forgot-username-support-link:hover {
    background-color: #357ab8;
}