@import '../styles.css';
@import 'style_geral_auth.css';

/* ----- Container Principal ----- */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* ----- Formulário de Login ----- */
.login-form {
    background: var(--cor-branca-suave) !important;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin: 40px 0;
}

#div-send-verification-email {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.alert {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

#div-send-verification-email {
    margin-top: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.button-send-verification-email {
    background-color: var(--cor-principal);
    color: var(--cor-textos);
    padding: 8px 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.button-send-verification-email:hover {
    background-color: var(--cor-principal-hover-buttons);
    color: var(--cor-textos);
}

/* ----- Responsividade ----- */
@media (max-width: 768px) {
    .extra_links {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .extra_links p {
        margin: 0;
    }

}

@media (max-width: 768px) {
    .extra_links {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .extra_links p {
        margin: 0;
    }

}