/* ===============================
   LOGIN - M2NORD
================================ */

.message {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 16px;
    background: radial-gradient(circle at top, #151515, #0a0a0a 70%);
}

.login-container {
    width: 100%;
    max-width: 420px;
    background: rgba(0,0,0,0.78);
    border-radius: 14px;
    padding: 30px 28px;
    border: 1px solid rgba(245, 211, 122, 0.18);
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
    animation: fadeUp 0.5s ease;
}

/* Título */
.login-container h2 {
    text-align: center;
    margin-bottom: 22px;
    color: #f5d37a;
    font-size: 1.5rem;
}

/* Formulário */
.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #ccc;
}

.form-group input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 12px;
    color: #fff;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: #f5d37a;
    box-shadow: 0 0 0 2px rgba(245,211,122,0.15);
}

/* Senha com botão */
.password-toggle {
    position: relative;
}

.password-toggle .toggle-btn {
    position: absolute;
    right: 10px;
    top: 34px;
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 15px;
}

.password-toggle .toggle-btn:hover {
    color: #f5d37a;
}

/* Botão */
.btn.primary.full {
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(135deg, #f5d37a, #caa64b);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 11px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn.primary.full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245,211,122,0.25);
}

/* Mensagem de resposta */
.response-msg {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
}

/* Texto inferior */
.small-text {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #bbb;
}

.small-text a {
    color: #f5d37a;
    font-weight: 600;
}

.small-text a:hover {
    text-decoration: underline;
}

/* Animação */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
