.wave-auth {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .wave-auth {
        grid-template-columns: 1fr 1fr;
    }
}

.wave-auth-visual {
    display: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #4f46e5 0%, #6366f1 40%, #06b6d4 100%);
    padding: 48px;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .wave-auth-visual {
        display: flex;
    }
}

.wave-auth-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wave-auth-visual-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 420px;
}

.wave-auth-visual-content img {
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
    border-radius: 18px;
    background: rgba(255,255,255,0.15);
    padding: 12px;
}

.wave-auth-visual-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.wave-auth-visual-content p {
    font-size: 1.0625rem;
    opacity: 0.9;
    line-height: 1.6;
}

.wave-auth-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wave-auth-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.95);
    font-size: 0.9375rem;
    font-weight: 500;
}

.wave-auth-feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 1rem;
}

.wave-auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: var(--wave-bg-mesh);
    background-attachment: fixed;
}

@media (min-width: 576px) {
    .wave-auth-panel { padding: 48px 40px; }
}

.wave-auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--wave-surface);
    border-radius: var(--wave-radius);
    padding: 36px 28px;
    border: 1px solid var(--wave-border-light);
    box-shadow: var(--wave-shadow-lg);
}

@media (min-width: 576px) {
    .wave-auth-card { padding: 44px 40px; }
}

.wave-auth-card-mobile-logo {
    text-align: center;
    margin-bottom: 28px;
}

@media (min-width: 992px) {
    .wave-auth-card-mobile-logo { display: none; }
}

.wave-auth-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    border-radius: 16px;
}

.wave-auth-card h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 6px;
    color: var(--wave-text);
}

.wave-auth-sub {
    color: var(--wave-muted);
    font-size: 0.9375rem;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.5;
}

.wave-auth .wave-form { text-align: left; }

.wave-auth .wave-btn-primary {
    margin-top: 8px;
    min-height: 52px;
    font-size: 1rem;
}

.wave-auth-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--wave-border-light);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--wave-muted);
}
