 :root { --primary: #47B25B; --secondary: #111827; }
        body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; }
        header { padding: 1rem 8%; border-bottom: 1px solid #eee; }
        .container { max-width: 800px; margin: 4rem auto; padding: 0 2rem; }
        h1 { color: var(--secondary); margin-bottom: 2rem; }
        .card { background: #f9fafb; padding: 2rem; border-radius: 16px; border: 1px solid #eee; }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        input { width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 8px; }
        .btn { background: var(--primary); color: white; padding: 0.8rem 2rem; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; }
        footer { padding: 2rem 8%; background: var(--secondary); color: #9CA3AF; text-align: center; font-size: 0.9rem; }
         .form-group { margin-bottom: 1.5rem; }
        label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9rem; }
        input, textarea { width: 100%; padding: 0.8rem 1rem; border-radius: 12px; border: 1px solid #E5E7EB; font-family: inherit; font-size: 1rem; transition: 0.3s; }
        input:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(71, 178, 91, 0.1); }
        
        .checkbox-group { display: flex; gap: 0.75rem; align-items: flex-start; margin: 2rem 0; font-size: 0.85rem; color: var(--text-muted); }
        .checkbox-group input { width: auto; margin-top: 0.3rem; cursor: pointer; }

        .btn-submit { background: var(--primary); color: var(--white); width: 100%; padding: 1rem; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 0.5rem; }
        .btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }
        .btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

        .msg { display: none; margin-top: 1.5rem; padding: 1rem; border-radius: 12px; text-align: center; font-weight: 600; }
        .msg-success { background: #ECFDF5; color: #059669; }
        .msg-error { background: #FEF2F2; color: #DC2626; }

        .hidden { display: none; }
        .animate-spin { animation: spin 1s linear infinite; }
        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }