/* ===============================
   REGISTER - M2NORD
================================ */

.message {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 15px;
    background: radial-gradient(circle at top, #151515, #0a0a0a 70%);
}

/* Caixa principal */
.register-container {
    width: 100%;
    max-width: 420px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    animation: fadeUp 0.5s ease;
}

/* Título */
.register-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    color: #f5d37a;
    letter-spacing: 1px;
}

/* Grupos */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

/* Labels */
.form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #cfcfcf;
}

/* Inputs */
.form-group input {
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 11px 12px;
    font-size: 14px;
    color: #eee;
    outline: none;
    transition: all 0.25s ease;
}

.form-group input::placeholder {
    color: #777;
}

.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: 33px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #aaa;
    transition: color 0.2s ease;
}

.password-toggle .toggle-btn:hover {
    color: #f5d37a;
}

/* Botão submit */
.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #f5d37a, #caa64b);
    color: #000;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 211, 122, 0.25);
}

/* Mensagem de resposta */
.response-msg {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    min-height: 18px;
}

/* Link login */
.login-link {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #aaa;
}

.login-link a {
    color: #f5d37a;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Animação */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 480px) {
    .register-container {
        padding: 24px 20px;
    }

    .register-container h2 {
        font-size: 22px;
    }
}

/* ===============================
   REGISTRO - SUCESSO
================================ */

.success-page {
    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%);
}

.success-card {
    max-width: 980px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    background: rgba(0,0,0,0.78);
    border: 1px solid rgba(245, 211, 122, 0.15);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
    color: #eee;
    animation: fadeUp 0.5s ease;
}

/* Lado esquerdo */
.success-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.success-left .badge {
    background: linear-gradient(135deg, #f5d37a, #caa64b);
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
}

.success-left h1 {
    margin: 6px 0 0;
    font-size: 1.6rem;
    color: #f5d37a;
}

.success-left .lead {
    color: #ccc;
    line-height: 1.5;
}

/* Infos */
.meta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(255,255,255,0.04);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #eee;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Botões */
.actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.actions .btn {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.actions .btn-primary {
    background: linear-gradient(135deg, #f5d37a, #caa64b);
    color: #000;
}

.actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,211,122,0.25);
}

.actions .btn-outline {
    border: 1px solid rgba(245,211,122,0.35);
    color: #f5d37a;
}

.actions .btn-outline:hover {
    background: rgba(245,211,122,0.08);
}

/* Nota */
.server-note {
    margin-top: 14px;
    font-size: 14px;
    color: #bbb;
}

/* Lado direito */
.success-right {
    background: rgba(255,255,255,0.03);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
}

.success-right h3 {
    color: #f5d37a;
    margin-bottom: 12px;
}

.rules {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rules li {
    background: rgba(0,0,0,0.4);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #ddd;
}

/* Responsivo */
@media (max-width: 880px) {
    .success-card {
        grid-template-columns: 1fr;
    }
}

