
        /* =========================================
           INFINITY LOGIN STIL (BEŽ & ZLATNO)
           ========================================= */
        :root {
            --beige-bg: #f4f1ea;
            --text-dark: #1A1A1A;
            --gold-accent: #B89643;
            --white: #ffffff;
        }

        body {
            background-color: var(--beige-bg);
            background-image: linear-gradient(to bottom, #fff 0%, #f4f1ea 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            font-family: 'Manrope', sans-serif;
            padding: 20px;
        }

        .login-wrapper {
            width: 100%;
            max-width: 480px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border: 1px solid rgba(184, 150, 67, 0.1);
            overflow: hidden;
            position: relative;
            padding: 60px 40px; 
            text-align: center;
            animation: slideUp 0.6s cubic-bezier(0.2, 1, 0.3, 1);
        }

        /* Zlatna linija na vrhu */
        .login-wrapper::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 6px;
            background: var(--gold-accent);
        }

        .login-logo {
            width: 320px;
            max-width: 100%;
            height: auto;
            margin-bottom: 25px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .login-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--text-dark);
            margin: 0 0 10px 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .login-subtitle {
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .input-group {
            margin-bottom: 25px;
            text-align: center;
        }

        .input-group label {
            display: inline-block;
            width: 100%;
            text-align: left;
            font-family: 'Oswald', sans-serif;
            font-size: 0.8rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            font-weight: 500;
            max-width: 400px;
        }

        .infinity-input {
            width: 100%;
            max-width: 400px;
            padding: 16px 20px;
            background-color: #fcfcfc;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            color: var(--text-dark);
            outline: none;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .infinity-input:focus {
            background-color: #fff;
            border-color: var(--gold-accent);
            box-shadow: 0 5px 15px rgba(184, 150, 67, 0.15);
        }

        .submit-btn {
            width: 100%;
            max-width: 400px;
            padding: 18px;
            background: linear-gradient(to right, #bf953f, #aa771c);
            color: #1a1a1a;
            border: none;
            border-radius: 8px;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 10px 20px rgba(184, 150, 67, 0.15);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(184, 150, 67, 0.25);
            background: linear-gradient(to right, #dcb357, #bf953f);
        }

        .links {
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            border-top: 1px solid #eee;
            padding-top: 20px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .links a {
            color: #888;
            text-decoration: none;
            transition: 0.3s;
            font-weight: 600;
        }

        .links a:hover {
            color: var(--gold-accent);
        }

        .back-link {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        #error-msg {
            background-color: #fdf2f2;
            color: #d93025;
            padding: 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            margin-bottom: 25px;
            border-left: 3px solid #d93025;
            display: none;
            text-align: left;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* --- NOVI STILOVI ZA MODAL --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(244, 241, 234, 0.9); /* Jaka bež pozadina */
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
        }

        .modal-box {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border: 1px solid var(--gold-accent);
            max-width: 400px;
            width: 90%;
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-box {
            transform: translateY(0);
        }

        .modal-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        }

        .modal-title {
            font-family: 'Oswald', sans-serif;
            color: var(--text-dark);
            font-size: 1.5rem;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-text {
            font-family: 'Manrope', sans-serif;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .modal-btn {
            background: linear-gradient(to right, #bf953f, #aa771c);
            color: #1a1a1a;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 1px;
            transition: 0.3s;
            width: 100%;
        }

        .modal-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(184, 150, 67, 0.3);
        }

        /* Responsive */
        @media (max-width: 500px) {
            .login-wrapper { padding: 40px 20px; }
            .login-title { font-size: 1.8rem; }
            .links { flex-direction: column; gap: 15px; }
            .login-logo { width: 260px; }
            .input-group label { max-width: 100%; }
            .infinity-input { max-width: 100%; }
            .submit-btn { max-width: 100%; }
            .links { max-width: 100%; }
            .error-msg { max-width: 100%; }
        }

