/* Socio Multi-Tenant Auth Styles */

:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --primary-glow: rgba(79, 70, 229, 0.15);
    --secondary-color: #059669;
}

/* Glassmorphism Auth Card */
.auth-glass-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 25px 60px -15px rgba(79, 70, 229, 0.12), 0 10px 20px -5px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(79, 70, 229, 0.04);
}

/* Ambient Background Blobs */
.bg-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

/* Auth Input Group */
.auth-input-wrapper {
    position: relative;
    border-radius: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-input-wrapper:hover {
    border-color: #94a3b8;
}

.auth-input-wrapper:focus-within {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.auth-input-wrapper.has-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Badges & Steps */
.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    background: #eef2ff;
    color: #4338ca;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.auth-step-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.3);
}

/* Floating Elements Animation */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.auth-animate-float {
    animation: floatSlow 5s ease-in-out infinite;
}
