/* CSS: auth/cadastro.php */

body { font-family: 'Plus Jakarta Sans', sans-serif; background: #f8fafc; display: flex; align-items: center; justify-content: center; min-height: 100vh; margin: 0; padding: 20px; box-sizing: border-box; }
        .register-container { display: flex; max-width: 1000px; width: 100%; background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); min-height: 600px; }
        .register-visual { flex: 1; background: #0f172a; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; color: white; position: relative; overflow: hidden; }
        .register-visual::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: radial-gradient(circle at top right, #ea1d2c 0%, transparent 60%); opacity: 0.2; }
        .visual-content { position: relative; z-index: 2; }
        .logo { font-size: 24px; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
        .logo i { color: #ea1d2c; }
        .plan-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 25px; border-radius: 16px; margin-top: auto; }
        .plan-tag { background: #ea1d2c; color: white; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: inline-block; margin-bottom: 10px; }
        .plan-name { font-size: 20px; font-weight: 700; margin-bottom: 5px; }
        .plan-price { font-size: 32px; font-weight: 800; }
        .plan-price span { font-size: 14px; font-weight: 400; opacity: 0.7; }
        .register-form { flex: 1.2; padding: 50px; display: flex; flex-direction: column; justify-content: center; background: white; }
        .form-header { margin-bottom: 30px; }
        .form-title { font-size: 28px; font-weight: 800; color: #1e293b; margin: 0 0 10px 0; }
        .form-subtitle { color: #64748b; font-size: 15px; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .full-width { grid-column: span 2; }
        .input-group { margin-bottom: 15px; }
        .label { display: block; font-size: 13px; font-weight: 600; color: #475569; margin-bottom: 6px; }
        .input-field { width: 100%; padding: 12px 15px; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 14px; transition: 0.2s; box-sizing: border-box; outline: none; background: #f8fafc; font-family: inherit; }
        .input-field:focus { border-color: #ea1d2c; background: white; box-shadow: 0 0 0 3px rgba(234, 29, 44, 0.1); }
        .btn-submit { width: 100%; padding: 15px; background: #ea1d2c; color: white; border: none; border-radius: 10px; font-weight: 700; font-size: 16px; cursor: pointer; transition: 0.2s; margin-top: 10px; }
        .btn-submit:hover { background: #c01320; transform: translateY(-1px); }
        .login-link { text-align: center; margin-top: 20px; font-size: 14px; color: #64748b; }
        .login-link a { color: #ea1d2c; text-decoration: none; font-weight: 700; }
        .alert { padding: 12px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; background: #fee2e2; color: #991b1b; text-align: center; border: 1px solid #fecaca; }
        @media (max-width: 900px) {
            .register-container { flex-direction: column; min-height: auto; }
            .register-visual { padding: 30px; min-height: 200px; }
            .register-form { padding: 30px; }
            .form-grid { grid-template-columns: 1fr; }
            .full-width { grid-column: span 1; }
        }
