
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", sans-serif;
            background: #fffae8;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            position: relative;
            overflow-x: hidden;
              background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: #ffa425;
            border-radius: 0 0 104% 36% / 0 0 217px 10px;
            z-index: 0;

        }

        body::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
            border-radius: 0 0 104% 36% / 0 0 217px 10px;
            z-index: 0;
            pointer-events: none;
        }

        .container {
            width: 100%;
            max-width: 340px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .logo-container {
            text-align: center;
            margin-bottom: 20px;
        }

        .logo {
            width: 50px;
            height: 50px;
            background: #FFFFFF;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .logo svg {
            width: 28px;
            height: 28px;
        }

        .login-box {
            background: #FFFFFF;
            border-radius: 25px;
            padding: 25px 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .login-box h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #000;
            text-align: center;
        }

        .subtitle {
            font-size: 11px;
            color: #999;
            margin-bottom: 20px;
            line-height: 1.4;
            text-align: center;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #000;
            margin-bottom: 6px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper input {
            width: 100%;
            padding: 11px 35px 11px 12px;
            border: 1px solid #E5E5E5;
            border-radius: 20px;
            font-size: 12px;
            outline: none;
            transition: border-color 0.3s;
            font-family: "Poppins", sans-serif;
        }

        .input-wrapper input:focus {
            border-color: #FDB756;
        }

        .input-wrapper input.error {
            border-color: #FF4444;
        }

        .input-wrapper .icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            width: 14px;
            height: 14px;
        }

        .error-message {
            display: none;
            color: #FF4444;
            font-size: 10px;
            margin-top: 4px;
        }

        .error-message.show {
            display: block;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 11px;
        }

        .save-password {
            display: flex;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .save-password input[type="checkbox"] {
            display: none;
        }

        .custom-checkbox {
            width: 16px;
            height: 16px;
            border: 2px solid #E5E5E5;
            border-radius: 50%;
            margin-right: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .save-password input[type="checkbox"]:checked + .custom-checkbox {
            background: #4CAF50;
            border-color: #4CAF50;
        }

        .custom-checkbox::after {
            content: '✓';
            color: white;
            font-size: 10px;
            display: none;
        }

        .save-password input[type="checkbox"]:checked + .custom-checkbox::after {
            display: block;
        }

        .save-password span {
            color: #666;
            font-size: 11px;
        }

        .forgot-password {
            color: #666;
            text-decoration: none;
            font-size: 11px;
        }

        .forgot-password:hover {
            color: #FDB756;
        }

        .btn-login {
            width: 100%;
            padding: 12px;
            background: #FDB756;
            color: #000;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 12px;
            transition: background 0.3s;
            font-family: "Poppins", sans-serif;
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

        .btn-login:hover {
            background: #FCA726;
        }

        .btn-login:focus {
            outline: none;
        }

        .register-section {
            text-align: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #E5E5E5;
        }

        .register-text {
            font-size: 12px;
            color: #666;
            margin-bottom: 10px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 12px;
            font-size: 10px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #FDB756;
        }

        .footer-links span {
            color: #E5E5E5;
        }

        .btn-register {
            width: 100%;
            padding: 12px;
            background: transparent;
            color: #FDB756;
            border: 2px solid #FDB756;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: "Poppins", sans-serif;
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

        .btn-register:hover {
            background: #FDB756;
            color: #000;
        }

        .btn-register:focus {
            outline: none;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            body::before {
                border-radius:0 0 80% 0% / 0 0 217px 10px;
            }

            body::after {
                border-radius:0 0 80% 0% / 0 0 217px 10px;
            }

            .container {
                max-width: 355px;
                margin-bottom: 185px;
            }

            .login-box {
                padding: 20px 18px;
            }

            .logo {
                width: 45px;
                height: 45px;
            }

            .logo svg {
                width: 25px;
                height: 25px;
            }
        }

        @media (max-height: 700px) {
            body::before {
                border-radius: 0 0 104% 36% / 0 0 217px 10px;
            }

            body::after {
                border-radius: 0 0 104% 36% / 0 0 217px 10px;
            }

            .logo-container {
                margin-bottom: 15px;
            }

            .subtitle {
                margin-bottom: 15px;
            }
        }
