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

        body {
            margin: 0;
            height: 100vh;
            font-weight: 100;
            background: radial-gradient(#0d3b1e, #1a5e25);
            -webkit-overflow-Y: hidden;
            -moz-overflow-Y: hidden;
            -o-overflow-Y: hidden;
            overflow-y: hidden;
            -webkit-animation: fadeIn 1 1s ease-out;
            -moz-animation: fadeIn 1 1s ease-out;
            -o-animation: fadeIn 1 1s ease-out;
            animation: fadeIn 1 1s ease-out;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }

        /* Ramadan Background Elements */
        .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: 60px;
            height: 60px;
            background: #f5f5dc;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            animation: moonGlow 4s infinite alternate;
            z-index: 1;
        }

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

        .mosque-silhouette {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: 
                linear-gradient(to top, rgba(13, 59, 30, 0.9) 0%, transparent 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path d="M0,200 L200,100 L400,150 L600,80 L800,120 L1000,60 L1200,100 L1200,200 Z" fill="%230a2915"/><path d="M300,100 L350,50 L400,100 L450,60 L500,100 L550,70 L600,100 L650,80 L700,100 L750,90 L800,100 L850,85 L900,100 L950,95 L1000,100 L1050,92 L1100,100 L1150,97 L1200,100 L1200,200 L300,200 Z" fill="%230d3b1e"/><circle cx="600" cy="40" r="8" fill="%23f5f5dc"/></svg>');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center bottom;
            z-index: 1;
        }

        @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.8);
            }
        }

        @keyframes twinkle {
            0% {
                opacity: 0.3;
                transform: scale(1);
            }
            100% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        /* Light Animation */
        .light {
            position: absolute;
            width: 0px;
            opacity: .75;
            background-color: white;
            box-shadow: #e9f1f1 0px 0px 20px 2px;
            opacity: 0;
            top: 100vh;
            bottom: 0px;
            left: 0px;
            right: 0px;
            margin: auto;
            z-index: 1;
        }

        .x1{ animation: floatUp 4s infinite linear; transform: scale(1.0); }
        .x2{ animation: floatUp 7s infinite linear; transform: scale(1.6); left: 15%; }
        .x3{ animation: floatUp 2.5s infinite linear; transform: scale(.5); left: -15%; }
        .x4{ animation: floatUp 4.5s infinite linear; transform: scale(1.2); left: -34%; }
        .x5{ animation: floatUp 8s infinite linear; transform: scale(2.2); left: -57%; }
        .x6{ animation: floatUp 3s infinite linear; transform: scale(.8); left: -81%; }
        .x7{ animation: floatUp 5.3s infinite linear; transform: scale(3.2); left: 37%; }
        .x8{ animation: floatUp 4.7s infinite linear; transform: scale(1.7); left: 62%; }
        .x9{ animation: floatUp 4.1s infinite linear; transform: scale(0.9); left: 85%; }

        @keyframes floatUp{
          0%{top: 100vh; opacity: 0;}
          25%{opacity: 1;}
          50%{top: 0vh; opacity: .8;}
          75%{opacity: 1;}
          100%{top: -100vh; opacity: 0;}
        }

        @keyframes fadeIn{
          from{opacity: 0;}
          to{opacity: 1;}
        }

        /* Container Transparan dengan efek glassmorphism */
        .forgot-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: 10;
            border: 1px solid rgba(255, 255, 255, 0.4);
            margin: 20px 0;
            animation: containerAppear 0.8s ease-out;
        }

        @keyframes containerAppear {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .forgot-header {
            text-align: center;
            margin-bottom: 35px;
            animation: headerSlide 0.6s ease-out 0.2s both;
        }

        @keyframes headerSlide {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* LOGO SEDERHANA */
        .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;
        }

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

        .forgot-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;
            animation: formSlide 0.6s ease-out 0.4s both;
        }

        @keyframes formSlide {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .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;
        }

        .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;
        }

        .forgot-button {
            flex: 0 0 86px;
            width: 86px;
            height: 52px;
            padding: 0;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 0;
            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);
            animation: buttonSlide 0.6s ease-out 0.6s both;
        }

        @keyframes buttonSlide {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .forgot-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);
        }

        .forgot-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: center;
            gap: 12px;
            width: 100%;
            margin-bottom: 15px;
        }

        .login-button {
            flex: 0 0 86px;
            width: 86px;
            height: 52px;
            padding: 0;
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            backdrop-filter: blur(10px);
            animation: loginButtonSlide 0.6s ease-out 0.7s both;
        }

        @keyframes loginButtonSlide {
            0% {
                opacity: 0;
                transform: translateY(15px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-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);
        }

        .forgot-actions .forgot-button,
        .forgot-actions .login-button {
            width: 100%;
            height: 50px;
            min-height: 50px;
            flex: none;
            margin: 0;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.16);
            box-shadow: none;
            box-sizing: border-box;
            font-size: 17px;
            line-height: 1;
            transform: none;
        }

        .forgot-actions .forgot-button:hover:not(:disabled),
        .forgot-actions .login-button:hover {
            background: rgba(255, 255, 255, 0.24);
            border-color: rgba(255, 255, 255, 0.7);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
            transform: translateY(-2px);
        }

        .back-section {
            text-align: center;
            animation: backSlide 0.6s ease-out 0.8s both;
        }

        @keyframes backSlide {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .back-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);
        }

        .back-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);
            animation: alertSlide 0.5s ease-out;
        }

        @keyframes alertSlide {
            0% {
                opacity: 0;
                transform: scale(0.95);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .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);
            animation: featuresSlide 0.6s ease-out 1s both;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

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

        @keyframes featuresSlide {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .forgot-footer {
            text-align: center;
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            animation: footerSlide 0.6s ease-out 1.2s both;
        }

        @keyframes footerSlide {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        .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); }
        }

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

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

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

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

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

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

            .security-features {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .moon {
                width: 50px;
                height: 50px;
                top: 5%;
                right: 5%;
            }
        }

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

            .forgot-container {
                padding: 25px 20px;
                margin: 10px 0;
                border-radius: 16px;
                width: 100%;
            }

            .simple-logo {
                width: 80px;
                height: 80px;
                margin-bottom: 15px;
            }

            .forgot-title {
                font-size: 22px;
                margin-bottom: 5px;
            }

            .forgot-subtitle {
                font-size: 13px;
                line-height: 1.4;
            }

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

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

            .input-icon {
                left: 15px;
                font-size: 16px;
            }

            .forgot-button {
                width: 100%;
                height: 48px;
                padding: 0;
                font-size: 17px;
                margin-bottom: 0;
            }

            .login-button {
                width: 100%;
                height: 48px;
                padding: 0;
                font-size: 17px;
                margin-bottom: 0;
            }

            .forgot-actions .forgot-button,
            .forgot-actions .login-button {
                height: 48px;
                min-height: 48px;
            }

            .back-text {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .back-button {
                padding: 12px 24px;
                font-size: 14px;
            }

            .security-features {
                flex-direction: row;
                justify-content: center;
                gap: 5px;
                margin-top: 20px;
                font-size: 9px;
                white-space: nowrap;
            }

            .security-features span,
            .security-separator {
                font-size: 9px;
                justify-content: center;
            }

            .forgot-footer {
                margin-top: 25px;
                padding-top: 20px;
            }

            .footer-text {
                font-size: 11px;
                line-height: 1.5;
            }

            .moon {
                width: 40px;
                height: 40px;
                top: 3%;
                right: 3%;
            }

            .mosque-silhouette {
                height: 100px;
            }
        }
