/* =============================================
   WMTX AUTH - Login page alignment with main UI
   ============================================= */

.auth-shell {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.auth-pattern {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: radial-gradient(#fffd11 0.5px, transparent 0.5px);
    background-size: 28px 28px;
}

.auth-orb {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 9999px;
    filter: blur(72px);
}

.auth-orb--left {
    width: 22rem;
    height: 22rem;
    top: -8rem;
    left: -7rem;
    background: rgba(255, 253, 17, 0.2);
}

.auth-orb--right {
    width: 18rem;
    height: 18rem;
    right: -6rem;
    bottom: -5rem;
    background: rgba(148, 163, 184, 0.28);
}

.auth-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.auth-card.glass-panel {
    border-color: rgba(148, 163, 184, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #0f172a;
}

.auth-card.glass-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.52);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 26px 75px rgba(15, 23, 42, 0.14);
}

.tg-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}

.tg-container iframe {
    border-radius: 0.75rem;
}

@media (max-width: 640px) {
    .auth-orb--left {
        width: 16rem;
        height: 16rem;
    }

    .auth-orb--right {
        width: 14rem;
        height: 14rem;
    }
}
