﻿:root {
    --acc: #5bb3e2;
    --acc2: #477bc4;
    --txt: #e9eef5;
    --muted: #a9b3c4;
    --glass-bg: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
    --glass-brd: rgba(255,255,255,.16);
    --ring: conic-gradient(from 0deg, #6cd3ff, #6c9bff, #b68cff, #6cd3ff);
}

* {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.auth-body {
    min-height: 100vh;
    color: var(--txt);
    background: radial-gradient(55rem 55rem at -10% -20%, rgba(91,179,226,.18), transparent 60%), radial-gradient(50rem 50rem at 120% -10%, rgba(182,140,255,.18), transparent 60%), linear-gradient(180deg, #0c1020 0%, #0b0f1a 100%);
    overflow-x: hidden;
}

    /* dekorime të lehta në background */
    .auth-body::before,
    .auth-body::after {
        content: "";
        position: fixed;
        inset: auto -15% -15% auto;
        width: 35vw;
        height: 35vw;
        background: radial-gradient(closest-side, rgba(108,155,255,.25), transparent);
        filter: blur(40px);
        opacity: .35;
        pointer-events: none;
    }

    .auth-body::after {
        inset: -12% auto auto -10%;
        background: radial-gradient(closest-side, rgba(108,211,255,.24), transparent);
    }

.hero-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px;
}

.brand-badge {
    height: 60px;
    width: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
    color: #a8d8ff;
    font-size: 26px;
}

.hero-card {
    display: inline-block;
    padding: 20px 24px;
    border-radius: 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    backdrop-filter: blur(10px);
}

.hero-bullets {
    margin: 1rem 0 0;
    color: #cdd6e3;
}

    .hero-bullets li {
        margin: .25rem 0;
    }

/* Card */
.auth-card {
    width: 100%;
    max-width: 880px;
    padding: 28px 26px;
    border-radius: 22px;
    position: relative;
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

/* Logo ring me border të animuar */
.logo-ring {
    width: 92px;
    height: 92px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 4px;
    background: var(--ring);
    animation: spin 6s linear infinite;
}

    .logo-ring img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 20px;
        background: rgba(12,16,32,.85);
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Inputs me ikona */
.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c7a8c;
    font-size: 18px;
    pointer-events: none;
}

.input-with-icon .form-control {
    padding-left: 42px;
    background: #f7f9fc;
    border: 1px solid #dee3ea;
}

    .input-with-icon .form-control:focus {
        border-color: var(--acc);
        box-shadow: 0 0 0 .25rem rgba(91,179,226,.25);
        background: #fff;
    }

/* Toggle */
.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c7a8c;
    text-decoration: none;
}

    .password-toggle:hover {
        color: #4f5b6a;
    }

/* Button */
.btn-primary {
    --bs-btn-bg: linear-gradient(180deg, var(--acc), var(--acc2));
    --bs-btn-border-color: var(--acc2);
    --bs-btn-hover-bg: linear-gradient(180deg, #6bc3ee, #528ed0);
    --bs-btn-hover-border-color: #528ed0;
    box-shadow: 0 8px 20px rgba(91,179,226,.35);
}

    .btn-primary:active {
        transform: translateY(1px);
    }

/* Links */
.subtle-link {
    color: #cfd6e3;
}

    .subtle-link:hover {
        color: #fff;
        text-decoration: underline;
    }

/* Responsive */
@media (max-width: 991.98px) {
    .hero-wrap {
        display: none;
    }

    .auth-card {
        max-width: 520px;
        margin: 48px auto;
    }
}
