* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        :root {
            --glass-bg: rgba(255, 255, 255, 0.15);
            --glass-bg-hover: rgba(255, 255, 255, 0.25);
            --glass-border: rgba(255, 255, 255, 0.3);
            --glass-border-strong: rgba(255, 255, 255, 0.35);
        }

        body {
            background: linear-gradient(135deg, #0d3b1e 0%, #1a5e25 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
            position: relative;
        }

        /* Gradient Wave Background */
        .wave-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .wave {
            position: absolute;
            width: 650px;
            height: 650px;
            border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
            background: rgba(255, 255, 255, 0.1);
            animation: wave 12s linear infinite;
            z-index: 1;
        }

        .wave:nth-child(2) {
            border-radius: 50% 50% 35% 65% / 81% 30% 70% 19%;
            animation-duration: 15s;
            background: rgba(255, 255, 255, 0.08);
        }

        .wave:nth-child(3) {
            border-radius: 66% 34% 35% 65% / 31% 70% 30% 69%;
            animation-duration: 18s;
            background: rgba(255, 255, 255, 0.05);
        }

        @keyframes wave {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Ramadan Animation Background dengan Masjid */
        .ramadan-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .moon {
            position: absolute;
            top: 10%;
            right: 10%;
            width: 80px;
            height: 80px;
            background: #f5f5dc;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
            animation: moonGlow 4s infinite alternate;
            z-index: 2;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite alternate;
            z-index: 2;
        }

        /* Gambar Masjid di Background */
        .mosque-background {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to top, rgba(13, 59, 30, 0.9) 0%, transparent 100%);
            display: flex;
            justify-content: center;
            align-items: flex-end;
            z-index: 2;
        }

        .mosque-image {
            width: 300px;
            height: 150px;
            background:
                linear-gradient(135deg, rgba(10, 41, 21, 0.9) 0%, rgba(13, 59, 30, 0.8) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 150"><path d="M150,20 L250,70 L250,130 L50,130 L50,70 Z" fill="%230a2915"/><path d="M150,20 L50,70 L50,80 L150,40 L250,80 L250,70 Z" fill="%230d3b1e"/><circle cx="150" cy="40" r="15" fill="%23f5f5dc"/><rect x="140" y="130" width="20" height="20" fill="%230a2915"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center bottom;
            border-radius: 50% 50% 0 0;
        }

        @keyframes moonGlow {
            0% {
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            }

            100% {
                box-shadow: 0 0 40px rgba(255, 255, 255, 0.9);
            }
        }

        @keyframes twinkle {
            0% {
                opacity: 0.3;
            }

            100% {
                opacity: 1;
            }
        }

        /* Container Transparan dengan efek glassmorphism */
        .login-container {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.3);
            width: 100%;
            max-width: 440px;
            padding: 40px 35px;
            position: relative;
            z-index: 3;
            border: 1px solid rgba(255, 255, 255, 0.4);
            margin: 20px 0;
        }

        .login-header {
            text-align: center;
            margin-bottom: 35px;
        }

        /* LOGO SEDERHANA TANPA EFEK */
        .simple-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .simple-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .login-title {
            font-size: 26px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .login-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            line-height: 1.5;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        .input-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 16px 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            font-size: 15px;
            text-align: center;
            transition: all 0.3s;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .form-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.2);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.9);
            font-weight: normal;
            letter-spacing: 0;
        }

        .password-container {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            transition: all 0.3s;
        }

        .password-toggle {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            font-size: 18px;
            padding: 6px;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .password-toggle:hover {
            color: white;
            background: rgba(255, 255, 255, 0.2);
        }

        .captcha-container {
            margin-bottom: 18px;
            background: transparent;
            padding: 0;
        }

        .captcha-header {
            display: none;
        }

        .captcha-row {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            width: 100%;
            flex-wrap: wrap;
        }

        .captcha-image-container {
            flex: 0 0 172px;
            min-width: 172px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border-strong);
            border-radius: 5px;
            padding: 0;
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        #captchaImage {
            width: 100%;
            max-width: 172px;
            aspect-ratio: 7 / 2;
            height: 48px;
            min-height: 48px;
            border-radius: 0;
            border: none;
            background: transparent;
            object-fit: contain;
            display: block;
            color: transparent;
            font-size: 0;
        }

        .captcha-controls {
            display: contents;
        }

        .refresh-captcha,
        .speaker-captcha {
            background: var(--glass-bg);
            color: white;
            border: none;
            border-radius: 10px;
            width: 48px;
            height: 48px;
            min-width: 48px;
            cursor: pointer;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
            border: 1px solid var(--glass-border-strong);
        }

        .refresh-captcha:hover,
        .speaker-captcha:hover {
            background: var(--glass-bg-hover);
            transform: translateY(-1px);
        }

        .captcha-input-container {
            position: relative;
            margin-top: 0;
            flex: 1 0 100%;
            min-width: 100%;
        }

        .captcha-input {
            width: 100%;
            height: 48px;
            padding: 12px 40px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 10px;
            text-align: center;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0;
            transition: all 0.2s ease;
            background: rgba(255, 255, 255, 0.12);
            color: white;
        }

        .captcha-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.75);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.18);
        }

        .captcha-hint {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.65);
            text-align: center;
            margin-top: 8px;
        }

        .captcha-input-container {
            position: relative;
            margin-top: 0;
            flex: 1 0 100%;
            min-width: 100%;
        }

        .captcha-input {
            width: 100%;
            height: 48px;
            padding: 12px 40px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 8px;
            text-align: center;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0;
            transition: all 0.2s ease;
            background: rgba(255, 255, 255, 0.14);
            color: white;
        }

        .captcha-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.75);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.22);
        }

        .captcha-input::placeholder {
            color: rgba(255, 255, 255, 0.9);
            font-weight: normal;
            letter-spacing: 0;
        }

        .captcha-input-icon {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
        }

        .captcha-hint {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-top: 6px;
        }

        .form-options {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .form-links {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            flex-wrap: wrap;
        }

        .option-separator {
            color: rgba(255, 255, 255, 0.55);
            font-size: 14px;
            font-weight: 600;
            line-height: 1;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            font-weight: 500;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 4px;
            cursor: pointer;
            accent-color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.2);
        }

        .forgot-link,
        .register-link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .forgot-link:hover,
        .register-link:hover {
            text-decoration: underline;
            color: white;
        }

        .login-button {
            width: 100%;
            height: 56px;
            padding: 0;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .login-button:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

        .divider {
            display: none;
            text-align: center;
            margin: 30px 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
        }

        .divider span {
            background: rgba(255, 255, 255, 0.15);
            padding: 0 20px;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border-radius: 10px;
        }

        .register-section {
            display: none;
            text-align: center;
        }

        .register-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .register-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 10px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .register-button:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.7);
        }

        .alert {
            padding: 18px 22px;
            border-radius: 10px;
            margin-bottom: 25px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid transparent;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .alert-error {
            background: rgba(220, 53, 69, 0.2);
            color: #ff6b6b;
            border-color: rgba(220, 53, 69, 0.3);
        }

        .alert-success {
            background: rgba(40, 167, 69, 0.2);
            color: #51cf66;
            border-color: rgba(40, 167, 69, 0.3);
        }

        .security-features {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 25px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .security-separator {
            color: rgba(255, 255, 255, 0.55);
            font-weight: 600;
        }

        .security-features span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            flex: 0 0 auto;
        }

        .login-footer {
            text-align: center;
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            line-height: 1.6;
        }

        /* Love Icon and Developer Link Styles */
        .love-icon {
            color: #ff6b6b;
            margin: 0 4px;
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .developer-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border-bottom: 1px solid transparent;
            padding: 2px 0;
        }

        .developer-link:hover {
            color: #f5f5dc;
            border-bottom: 1px solid #f5f5dc;
        }

        /* Loading Animation */
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ========== RESPONSIVE DESIGN ========== */

        /* Tablet */
        @media (max-width: 768px) {
            .login-container {
                padding: 35px 30px;
                margin: 15px;
                max-width: 400px;
            }

            .simple-logo {
                width: 100px;
                height: 100px;
            }

            #captchaImage {
                max-width: 172px;
                min-height: 48px;
            }

            .security-features {
                gap: 20px;
            }

            .wave {
                width: 500px;
                height: 500px;
            }
        }

        /* Mobile L */
        @media (max-width: 480px) {
            body {
                padding: 15px;
                align-items: flex-start;
            }

            .login-container {
                padding: 30px 25px;
                margin: 10px 0;
                border-radius: 16px;
            }

            .simple-logo {
                width: 90px;
                height: 90px;
            }

            .login-title {
                font-size: 24px;
            }

            .login-subtitle {
                font-size: 14px;
            }

            .form-options {
                flex-direction: row;
                gap: 8px;
                align-items: center;
            }

            .form-links {
                gap: 8px;
            }

            .checkbox-wrapper,
            .forgot-link,
            .register-link,
            .option-separator {
                font-size: 12px;
            }

            .captcha-image-container {
                padding: 0;
                flex: 1 1 128px;
                min-width: 128px;
                max-width: 172px;
            }

            #captchaImage {
                max-width: 172px;
                min-height: 48px;
            }

            .captcha-controls {
                display: contents;
            }

            .refresh-captcha,
            .speaker-captcha {
                width: 48px;
                height: 48px;
                min-width: 48px;
                justify-content: center;
            }

            .security-features {
                flex-direction: row;
                justify-content: center;
                gap: 8px;
                font-size: 10px;
                white-space: nowrap;
            }

            .form-input {
                padding: 14px 45px;
                font-size: 14px;
            }

            .captcha-input {
                height: 48px;
                padding: 12px 40px;
                font-size: 16px;
            }

            .wave {
                width: 400px;
                height: 400px;
            }
        }

        /* Input focus effects */
        .input-group:focus-within .input-icon {
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
