       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            /* Turkish Red & Gold */
            --turkish-red: #E11B22;
            --ottoman-gold: #C4A747;
            --iznik-blue: #1E4C7A;
            --mediterranean-teal: #006A6D;
            
            /* Spanish Warmth */
            --spanish-terracotta: #CB6E4E;
            --andalusian-sunset: #F4A261;
            --spanish-orange: #E76F51;
            --olive-grove: #6A8D73;
            
            /* Mediterranean Neutrals */
            --whitewash: #FDF6E9;
            --limestone: #E8E0D0;
            --adobe: #D4B8A0;
            --espresso: #5C3E35;
            
            /* Accents */
            --tile-blue: #2A9D8F;
            --saffron: #FFB347;
            --terracotta: #C44536;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(165deg, #E11B22 0%, #CB6E4E 30%, #006A6D 70%, #1E4C7A 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Turkish Iznik tile pattern overlay */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(196, 167, 71, 0.1) 0%, transparent 15%),
                radial-gradient(circle at 90% 80%, rgba(42, 157, 143, 0.1) 0%, transparent 20%),
                repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 8px),
                repeating-linear-gradient(135deg, rgba(225, 27, 34, 0.03) 0px, rgba(225, 27, 34, 0.03) 2px, transparent 2px, transparent 8px);
            pointer-events: none;
        }
        
        /* Spanish tile border */
        body::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 3px solid rgba(196, 167, 71, 0.2);
            border-radius: 60px 60px 30px 30px;
            pointer-events: none;
            z-index: 1;
        }
        
        .container {
            width: 100%;
            max-width: 460px;
            position: relative;
            z-index: 10;
            animation: fadeInUp 0.9s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Ottoman inspired arch */
        .arch-decoration {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .arch-decoration span {
            width: 12px;
            height: 12px;
            background: var(--ottoman-gold);
            border-radius: 50% 50% 0 0;
            opacity: 0.7;
            animation: float 4s infinite ease-in-out;
        }
        
        .arch-decoration span:nth-child(1) { animation-delay: 0s; background: var(--turkish-red); }
        .arch-decoration span:nth-child(2) { animation-delay: 0.2s; background: var(--ottoman-gold); }
        .arch-decoration span:nth-child(3) { animation-delay: 0.4s; background: var(--iznik-blue); }
        .arch-decoration span:nth-child(4) { animation-delay: 0.6s; background: var(--spanish-terracotta); }
        .arch-decoration span:nth-child(5) { animation-delay: 0.8s; background: var(--mediterranean-teal); }
        .arch-decoration span:nth-child(6) { animation-delay: 1s; background: var(--ottoman-gold); }
        .arch-decoration span:nth-child(7) { animation-delay: 1.2s; background: var(--turkish-red); }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.2); }
        }
        
        .logo-area {
            text-align: center;
            margin-bottom: 35px;
        }
        
        /* Turkish-inspired logo */
        .logo-icon {
            width: 110px;
            height: 110px;
            background: linear-gradient(145deg, var(--ottoman-gold), var(--spanish-terracotta));
            border-radius: 50% 50% 20% 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 20px 30px rgba(0,0,0,0.4);
            border: 4px solid rgba(255,255,255,0.5);
            position: relative;
            transform: rotate(0deg);
            transition: transform 0.5s;
        }
        
        .logo-icon:hover {
            transform: rotate(5deg);
        }
        
        /* Turkish star and crescent */
        .logo-icon::before {
            content: '☪';
            position: absolute;
            top: -15px;
            right: -10px;
            font-size: 32px;
            color: var(--ottoman-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            opacity: 0.8;
        }
        
        /* Spanish sun */
        .logo-icon::after {
            content: '☀';
            position: absolute;
            bottom: -15px;
            left: -10px;
            font-size: 32px;
            color: var(--andalusian-sunset);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            opacity: 0.8;
        }
        
        .logo-icon i {
            font-size: 52px;
            color: white;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
        }
        
        .logo-text {
            font-size: 32px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            color: white;
            text-shadow: 4px 4px 0 rgba(0,0,0,0.2);
            letter-spacing: 1px;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        
        .logo-sub {
            color: var(--whitewash);
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: rgba(0,0,0,0.3);
            display: inline-block;
            padding: 6px 20px;
            border-radius: 40px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
            font-family: 'Poppins', sans-serif;
        }
        
        .login-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 50px 50px 30px 30px;
            padding: 45px 40px;
            box-shadow: 0 40px 50px -20px rgba(0,0,0,0.5);
            border: 2px solid rgba(255,255,255,0.5);
            position: relative;
            overflow: hidden;
        }
        
        /* Moorish/Tile pattern border */
        .login-card::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 3px solid var(--ottoman-gold);
            border-radius: 35px;
            opacity: 0.2;
            pointer-events: none;
        }
        
        /* Corner decorations */
        .login-card::after {
            content: '⚘';
            position: absolute;
            bottom: 15px;
            right: 25px;
            font-size: 32px;
            color: var(--spanish-terracotta);
            opacity: 0.2;
            transform: rotate(15deg);
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 35px;
            position: relative;
        }
        
        .login-header h2 {
            font-size: 28px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            color: var(--iznik-blue);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .login-header p {
            color: var(--espresso);
            font-size: 14px;
            font-style: italic;
        }
        
        .error-message {
            background: rgba(225, 27, 34, 0.1);
            border: 1px solid var(--turkish-red);
            color: var(--turkish-red);
            padding: 14px 18px;
            border-radius: 50px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            backdrop-filter: blur(5px);
        }
        
        .error-message i {
            font-size: 18px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--espresso);
            margin-bottom: 8px;
            font-family: 'Poppins', sans-serif;
        }
        
        label i {
            color: var(--mediterranean-teal);
            font-size: 14px;
        }
        
        .input-wrapper {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--ottoman-gold);
            font-size: 16px;
            transition: all 0.3s;
            z-index: 2;
        }
        
        .input-field {
            width: 100%;
            padding: 16px 16px 16px 50px;
            border: 2px solid rgba(92, 62, 53, 0.2);
            border-radius: 50px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
            background: rgba(255,255,255,0.95);
            color: #333;
        }
        
        .input-field:focus {
            outline: none;
            border-color: var(--mediterranean-teal);
            box-shadow: 0 0 0 4px rgba(0, 106, 109, 0.15);
            background: white;
        }
        
        .input-field:focus + .input-icon {
            color: var(--mediterranean-teal);
        }
        
        .input-field::placeholder {
            color: #aaa;
            font-style: italic;
            font-size: 13px;
        }
        
        .password-toggle {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--ottoman-gold);
            cursor: pointer;
            transition: color 0.3s;
            z-index: 2;
        }
        
        .password-toggle:hover {
            color: var(--mediterranean-teal);
        }
        
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--mediterranean-teal);
            cursor: pointer;
        }
        
        .remember-me span {
            font-size: 14px;
            color: var(--espresso);
        }
        
        .forgot-link {
            color: var(--mediterranean-teal);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            border-bottom: 1px dashed var(--mediterranean-teal);
            padding-bottom: 2px;
        }
        
        .forgot-link:hover {
            color: var(--turkish-red);
            border-bottom-color: var(--turkish-red);
        }
        
        .login-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(145deg, var(--turkish-red), var(--spanish-terracotta));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(225, 27, 34, 0.4);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Playfair Display', serif;
        }
        
        .login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }
        
        .login-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(225, 27, 34, 0.5);
            background: linear-gradient(145deg, var(--spanish-terracotta), var(--turkish-red));
        }
        
        .login-btn:hover::before {
            left: 100%;
        }
        
        .login-btn i {
            font-size: 20px;
            transition: transform 0.3s;
        }
        
        .login-btn:hover i {
            transform: translateX(5px) rotate(10deg);
        }
        
        .footer {
            text-align: center;
            margin-top: 30px;
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            letter-spacing: 1px;
            font-weight: 300;
        }
        
        .footer i {
            margin: 0 6px;
            font-size: 12px;
            color: var(--ottoman-gold);
        }
        
        /* Responsive */
        @media (max-width: 480px) {
            .login-card {
                padding: 30px 25px;
            }
            
            .logo-icon {
                width: 90px;
                height: 90px;
            }
            
            .logo-icon i {
                font-size: 40px;
            }
            
            .logo-text {
                font-size: 26px;
            }
            
            .logo-sub {
                font-size: 11px;
            }
            
            .login-header h2 {
                font-size: 24px;
            }
            
            .form-options {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .arch-decoration span {
                width: 8px;
                height: 8px;
            }
        }
        
        /* Turkish flag colors in focus */
        .input-field:focus {
            border-color: var(--turkish-red);
        }
        
        /* Spanish flair */
        .login-btn {
            border-bottom: 3px solid var(--ottoman-gold);
        }
