/* register.css — the registration page's styles, moved verbatim out of register.php's
   inline <style> block on 2026-08-13 (part of the same malware-scanner-driven slimming
   that moved the POST processing to includes/register-processing.php — see global
   CLAUDE.md §5.5). Loaded only by register.php. */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .container {
            max-width: 600px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 40px;
        }
        
        h1 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 28px;
        }
        
        .subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="password"],
        select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        input:focus,
        select:focus {
            outline: none;
            border-color: #007bff;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .subdomain-group {
            margin-bottom: 25px;
        }
        
        .subdomain-input-wrapper {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        
        .subdomain-input-wrapper:focus-within {
            border-color: #007bff;
        }
        
        .subdomain-input {
            flex: 1;
            padding: 12px;
            border: none;
            font-size: 16px;
            outline: none;
        }
        
        .subdomain-suffix {
            padding: 12px;
            background-color: #f8f9fa;
            color: #666;
            font-size: 14px;
            border-left: 1px solid #ddd;
        }
        
        .subdomain-preview {
            margin-top: 10px;
            padding: 12px;
            background-color: #f0f8ff;
            border-radius: 4px;
            font-size: 14px;
            color: #0066cc;
            display: none;
        }
        
        .subdomain-status {
            margin-top: 8px;
            font-size: 14px;
            display: none;
        }
        
        .subdomain-status.available {
            color: #28a745;
        }
        
        .subdomain-status.unavailable {
            color: #dc3545;
        }
        
        .subdomain-status.checking {
            color: #666;
        }
        
        .subdomain-status.invalid {
            color: #dc3545;
        }
        
        .help-text {
            font-size: 13px;
            color: #666;
            margin-top: 5px;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }

        .section-block-org {
            background: #fbf5ec;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .section-block-org .section-title {
            margin-top: 0;
        }

        .btn {
            background-color: #007bff;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
            margin-top: 20px;
        }
        
        .btn:hover:not(:disabled) {
            background-color: #0056b3;
        }
        
        .btn:disabled {
            background-color: #6c757d;
            cursor: not-allowed;
        }
        
        .alert {
            padding: 12px 16px;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        
        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .required {
            color: #dc3545;
        }
        
        /* Hide reCAPTCHA badge - we'll show the notice instead */
        .grecaptcha-badge {
            visibility: hidden;
        }
        
        .recaptcha-notice {
            font-size: 12px;
            color: #666;
            text-align: center;
            margin-top: 15px;
            line-height: 1.4;
        }
        
        .recaptcha-notice a {
            color: #007bff;
            text-decoration: none;
        }
        
        .recaptcha-notice a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 600px) {
            .container {
                margin: 20px auto;
            }
            
            .card {
                padding: 25px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
