@import url(./geral.css);

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Roboto", sans-serif;
}

.ancora {
    text-decoration: none;
    color: #000000;
}

.btn_entrar {
    background-color: var(--cor-botao);
    padding: 10px 100px;
    border-radius: 5px;
    margin-top: 20px;
}

.btn_entrar:hover {
    cursor: pointer;
    background-color: var(--cor-hover);
}

.titulo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
}

.form-login {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 240px;
}

.login {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.campo_login {
    border: var(--cor-botao);
    margin-bottom: 15px;
    width: 240px;
    height: 30px;
    display: block;
    box-sizing: border-box;
}

.btn_esqueci {
    margin: 15px 0 5% 0;
}

.btn_entrar {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    box-sizing: border-box;
}

.mensagem-flash {
    width: 100%;
    max-width: 320px;
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    background: #eef6ff;
    color: #1f3b5b;
    border: 1px solid #c7ddff;
    text-align: center;
    font-size: 14px;
}

.mensagem-erro {
    width: 100%;
    max-width: 320px;
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    text-align: center;
    font-size: 14px;
}

.secao-reenvio-confirmacao {
    width: 100%;
    max-width: 320px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.titulo-reenvio {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.texto-reenvio {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    text-align: center;
}

.form-reenvio {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.label-reenvio {
    font-size: 14px;
    font-weight: 500;
}

.btn_reenvio {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: var(--cor-botao);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.btn_reenvio:hover {
    background-color: var(--cor-hover);
}

