* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ===== CLEAN BACKGROUND ===== */
        .register-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5, #f0fdf4);
            position: relative;
            padding: 40px 20px;
            overflow: hidden;
        }

        /* subtle glow */
        .register-container::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(16,185,129,0.15), transparent 40%);
            z-index: 0;
            pointer-events: none;
        }

        /* ===== WAVE ===== */
        .wave-wrapper {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 50%;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }
        .wave-wrapper::before{
            content: "";
            position: absolute;
            top: -100px;
            width: 100%;
            height: 120px;
            background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
            z-index: 2;
        }

        .waves {
            width: 100%;
            height: 100%;
        }

        .wave-parallax > use {
            animation: waveMove 18s linear infinite;
        }

        .wave-parallax > use:nth-child(2) {
            animation-delay: -4s;
            animation-duration: 14s;
        }

        .wave-parallax > use:nth-child(3) {
            animation-delay: -8s;
            animation-duration: 20s;
        }

        .wave-parallax > use:nth-child(4) {
            animation-delay: -12s;
            animation-duration: 25s;
        }

        @keyframes waveMove {
            0% { transform: translateX(-90px); }
            100% { transform: translateX(85px); }
        }

        /* ===== GLASS CARD ===== */
        .register-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            width: 100%;
            max-width: 480px;
            z-index: 10;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255,255,255,0.4);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .register-card:hover {
            transform: translateY(-3px);
        }

        /* ===== HEADER ===== */
        .register-header {
            padding: 30px 30px 10px;
            text-align: center;
            background: linear-gradient(90deg, #059669, #10b981);
        }

        .register-header h2 {
            color: rgb(208, 238, 230);
            font-size: 26px;
            font-weight: 700;
        }

        .system-title {
            color: rgb(219, 247, 238);
            font-size: 12px;
            margin-top: 5px;
        }

        /* ===== BODY ===== */
        .register-body {
            padding: 30px;
        }

        /* ===== SECTION ===== */
        .section-title {
            font-size: 14px;
            font-weight: 600;
            color: #065f46;
            margin-bottom: 15px;
        }

        /* ===== INPUT ===== */
        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            font-size: 11px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 6px;
            display: block;
            cursor: default;
        }

        .input-wrapper {
            position: relative;
            
            cursor: text;
        }

        .input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            pointer-events: none;
            cursor: default;
        }

        /* 🔥 FIX: Force text cursor (I-beam) on all input fields - no hand pointer */
        .form-control {
            width: 100%;
            padding: 13px 14px 13px 42px;
            border-radius: 14px;
            border: 1px solid #e5e7eb;
            background: rgba(255,255,255,0.95);
            font-size: 14px;
            transition: all 0.25s ease;
            outline: none;
            /* CRITICAL: Force text cursor */
            cursor: text !important;
        }

        .form-control:focus {
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
            cursor: text !important;
        }

        /* Ensure hover/active states don't change cursor */
        .form-control:hover,
        .form-control:active {
            cursor: text !important;
        }

        /* Additional safeguard for any input within wrapper */
        .input-wrapper .form-control {
            cursor: text !important;
        }

        /* ===== ROW ===== */
        .row {
            display: flex;
            gap: 15px;
        }

        .col-md-6 {
            flex: 1;
        }

        /* ===== BUTTON (primary action) ===== */
        .btn-register {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #10b981, #34d399);
            border: none;
            border-radius: 999px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            margin-top: 10px;
            box-shadow: 0 8px 20px rgba(16,185,129,0.25);
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-register:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 25px rgba(16,185,129,0.35);
        }

        /* ===== LOGIN LINK (simple text link, not a button) ===== */
        .btn-login-link {
            display: block;
            text-align: center;
            margin-top: 18px;
            font-size: 13px;
            color: #059669;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
        }

        .btn-login-link:hover {
            text-decoration: underline;
            color: #047857;
        }

        /* ===== ERRORS ===== */
        .error-message {
            font-size: 11px;
            color: #ef4444;
            margin-top: 4px;
        }

        /* Global override for all text inputs */
        input, textarea, .form-control {
            cursor: text;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .row {
                flex-direction: column;
                gap: 12px;
            }
            .register-body {
                padding: 24px;
            }
        }

        /* Ensure no accidental pointer on card containers */
        .register-card, .register-body, .form-group {
            cursor: default;
        }