   .auth-wrap {
            max-width: 520px;
            margin: 2.5rem auto 4rem;
            padding: 0 1.25rem;
        }

        .auth-card {
            background: white;
            border: 1.5px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .auth-head {
            padding: 1.75rem 1.75rem 1.25rem;
            border-bottom: 1px solid var(--border);
            text-align: center;
        }

        .auth-head .logo-mark {
            margin: 0 auto 0.75rem;
        }

        .auth-head h1 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.25rem;
        }

        .auth-head p {
            font-size: 0.85rem;
            color: var(--muted);
        }

        .auth-body {
            padding: 1.5rem 1.75rem;
        }

        /* Alert box */
        .alert {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.85rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 500;
            margin-bottom: 1.25rem;
            border: 1.5px solid transparent;
        }

        .alert i { font-size: 0.95rem; flex-shrink: 0; margin-top: 0.1rem; }

        .alert-success {
            background: #ecfdf5;
            border-color: #6ee7b7;
            color: #065f46;
        }
        .alert-success i { color: #059669; }

        .alert-error {
            background: #fef2f2;
            border-color: #fca5a5;
            color: #991b1b;
        }
        .alert-error i { color: var(--red); }

        .alert-warning {
            background: #fffbeb;
            border-color: #fcd34d;
            color: #92400e;
        }
        .alert-warning i { color: #d97706; }

        .alert-list {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .alert-list li { margin-top: 0.25rem; }
        .alert-list li:first-child { margin-top: 0; }

        /* Form */
        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            display: block;
            font-size: 0.83rem;
            font-weight: 600;
            color: var(--text-2);
            margin-bottom: 0.4rem;
        }

        .form-label .req {
            color: var(--red);
            margin-left: 2px;
        }

        .form-hint {
            font-size: 0.74rem;
            color: var(--muted);
            margin-top: 0.3rem;
        }

        .form-control {
            width: 100%;
            padding: 0.65rem 0.9rem;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: 0.9rem;
            color: var(--text);
            background: white;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-control:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 3px var(--red-glow);
        }

        .form-control.error {
            border-color: var(--red);
        }

        /* Password wrapper sa show/hide */
        .input-pw-wrap {
            position: relative;
        }

        .input-pw-wrap .form-control {
            padding-right: 2.75rem;
        }

        .pw-toggle {
            position: absolute;
            right: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: var(--muted);
            font-size: 0.88rem;
            padding: 0;
            line-height: 1;
        }

        .pw-toggle:hover { color: var(--text); }

        /* Captcha */
        .captcha-wrap {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .captcha-img {
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--border);
            cursor: pointer;
            flex-shrink: 0;
        }

        .captcha-img:hover { border-color: var(--muted); }

        .captcha-wrap .form-control {
            width: 130px;
            flex-shrink: 0;
        }

        .captcha-refresh {
            background: none;
            border: none;
            color: var(--muted);
            cursor: pointer;
            font-size: 0.8rem;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .captcha-refresh:hover { color: var(--red); }

        /* Uslovi */
        .terms-row {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-bottom: 1.25rem;
            font-size: 0.85rem;
            color: var(--text-2);
        }

        .terms-row input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--red);
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .terms-row a {
            color: var(--red);
            text-decoration: none;
            font-weight: 600;
        }

        .terms-row a:hover { text-decoration: underline; }

        /* Submit */
        .btn-submit {
            width: 100%;
            padding: 0.85rem;
            background: var(--red);
            color: white;
            border: none;
            border-radius: 9999px;
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-submit:hover { background: var(--red-dark); }

        /* Separator */
        .form-sep {
            height: 1px;
            background: var(--border);
            margin: 1.25rem 0;
        }

        /* Footer linka */
        .auth-footer {
            padding: 1rem 1.75rem;
            border-top: 1px solid var(--border);
            text-align: center;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .auth-footer a {
            color: var(--red);
            font-weight: 600;
            text-decoration: none;
        }

        .auth-footer a:hover { text-decoration: underline; }