/* ==========================================================================
   FORMULÁRIO DE CADASTRO (Atleta)
   ========================================================================== */
.ma-register-form-wrapper { background: #ffffff; padding: 40px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); border: 1px solid #eaeaea; font-family: 'Inter', sans-serif; max-width: 800px; margin: 0 auto; }
.a3-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.a3-pcd-warning { font-size: 0.85em; color: #856404; background: #fff3cd; padding: 10px; border-left: 4px solid #ffeeba; margin-top: 5px; border-radius: 4px; }
.cadastro-title { margin-top: 0; margin-bottom: 5px; }
.cadastro-info { margin-bottom: 25px; color: #666; }

/* ==========================================================================
   LOGIN SOCIAL E DIVISORES
   ========================================================================== */
.a3-social-login-container { margin-bottom: 25px; text-align: center; }
.a3-divisor { display: flex; align-items: center; text-align: center; margin: 20px 0; color: #999; font-size: 14px; }
.a3-divisor::before, .a3-divisor::after { content: ''; flex: 1; border-bottom: 1px solid #eee; }
.a3-divisor:not(:empty)::before { margin-right: .5em; }
.a3-divisor:not(:empty)::after { margin-left: .5em; }
.a3-social-login-wrap { margin-top: 15px; }
.a3-social-separator { text-align:center; margin: 15px 0; color:#666; font-size:13px; }

/* ==========================================================================
   LOGIN DEDICADO E RECUPERAÇÃO DE SENHA
   ========================================================================== */
.mrc-login-wrapper, .mrc-recuperar-wrapper { background-color: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); max-width: 450px; margin: 0 auto; border: 1px solid #f0f0f0; font-family: 'Inter', sans-serif; }
.mrc-login-header, .mrc-recuperar-header { text-align: center; margin-bottom: 30px; }
.mrc-login-header h2, .mrc-recuperar-header h2 { color: #333; margin: 0 0 10px 0; font-size: 1.8rem; }
.mrc-login-header p, .mrc-recuperar-header p { color: #777; margin: 0; font-size: 0.95rem; line-height: 1.5; }

.mrc-input-group { margin-bottom: 20px; text-align: left; }
.mrc-input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; font-size: 0.9rem; }
.mrc-input-group input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; transition: border 0.3s; background: #fafafa; }
.mrc-input-group input:focus { border-color: #1EC329; background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(30, 195, 41, 0.1); }

.mrc-btn-submit, .mrc-btn-reset { width: 100%; padding: 14px; background-color: #000 !important; color: #fff; border: none; border-radius: 6px; font-size: 1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; }
.mrc-btn-submit:hover, .mrc-btn-reset:hover { background-color: #169c20; transform: translateY(-2px); }

.mrc-login-footer, .mrc-back-link { margin-top: 20px; text-align: center; font-size: 0.9rem; }
.mrc-login-footer a, .mrc-back-link a { color: #555; text-decoration: none; }
.mrc-login-footer a:hover, .mrc-back-link a:hover { color: #1EC329; text-decoration: underline; }

/* Alerta Sucesso / Já Logado */
.a3-alerta-sucesso { background-color: #e8f9e9; color: #169c20; padding: 25px 20px; border-radius: 8px; text-align: center; border: 1px solid #ccebc9; margin-bottom: 20px; }
.a3-alerta-sucesso h3 { margin-top: 0; margin-bottom: 10px; color: #169c20; }
.a3-alerta-sucesso p { margin: 0; font-size: 0.95rem; color: #333; }
.mrc-login-box { text-align: center; padding: 30px; background: #f5f5f5; border-radius: 10px; border: 1px solid #e0e0e0; max-width: 400px; margin: 0 auto; font-family: 'Inter', sans-serif; }
.mrc-user-avatar img { border-radius: 50%; margin-bottom: 15px; border: 3px solid #1EC329; }
.mrc-btn-login { display: inline-block; background: #000 !important; color: #fff; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; margin-top: 10px; }
.mrc-btn-login:hover { background: #169c20; }

/* ==========================================================================
   BOTÃO DE LOGOUT SEGURO
   ========================================================================== */
.mrc-logout-wrapper { text-align: center; padding: 40px 20px; background: #fff; border-radius: 8px; font-family: 'Inter', sans-serif; border: 1px solid #f0f0f0; }
.mrc-logout-icon { margin-bottom: 20px; opacity: 0.7; }
.mrc-logout-wrapper h3 { margin: 0 0 10px 0; color: #333; font-size: 1.2rem; }
.mrc-logout-wrapper p { color: #777; margin-bottom: 30px; font-size: 0.9rem; }
.mrc-btn-sair-confirmar { display: inline-block; background-color: #ff4d4d; color: #fff !important; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3); cursor: pointer; }
.mrc-btn-sair-confirmar:hover { background-color: #e60000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4); }

/* Responsividade Base */
@media (max-width: 600px) {
    .ma-register-form-wrapper { padding: 20px; }
    .a3-form-grid { grid-template-columns: 1fr; }
}