/* ============================================
   Auth Designer Overrides
   These styles override the auth-designer package
   defaults. Kept here so composer install / filament:upgrade
   cannot overwrite them.
   ============================================ */

/* Hide the background image, use solid blue instead */
.fi-auth-media-wrapper {
    display: none !important;
}

.fi-auth-media {
    display: none !important;
}

/* Blue background on media section */
.fi-auth-layout.media-left .fi-auth-media-section,
.fi-auth-layout.media-right .fi-auth-media-section {
    background: #2563eb;
}

/* Remove the dark gradient overlay so blue shows through */
.fi-auth-layout.media-left .fi-auth-media-overlay,
.fi-auth-layout.media-right .fi-auth-media-overlay {
    background: transparent;
}

/* Remove text shadow on media content */
.fi-auth-media-content {
    text-shadow: none;
}

/* ============================================
   Auth Showcase Panel
   ============================================ */

.auth-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.showcase-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 380px;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.875rem;
    padding: 1.25rem 1.5rem;
    color: white;
}

/* Planning card */
.card-planning {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-planning-left {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.card-label {
    font-size: 0.8rem;
    opacity: 0.65;
    font-weight: 500;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

/* Status card */
.card-status {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    flex-shrink: 0;
}

.status-dot-blue { background: #93c5fd; }
.status-dot-amber { background: #fbbf24; }
.status-dot-green { background: #4ade80; }

.status-count {
    margin-left: auto;
    font-weight: 700;
    opacity: 0.85;
}

/* Steps card */
.card-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    flex: 1;
}

.step-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.step-dot-filled {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.step-dot-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.step-label {
    font-size: 0.65rem;
    opacity: 0.6;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.step-connector {
    width: 1.5rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    margin-bottom: 1.25rem;
}

/* Tagline */
.showcase-tagline {
    text-align: center;
    color: white;
    padding: 0.5rem 1rem 0;
    max-width: 380px;
}

.showcase-tagline h2 {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.375rem 0;
    letter-spacing: -0.02em;
}

.showcase-tagline p {
    font-size: 0.875rem;
    opacity: 0.6;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

/* Decorative background blurs */
.fi-auth-layout.media-left .fi-auth-media-section::before,
.fi-auth-layout.media-left .fi-auth-media-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.fi-auth-layout.media-left .fi-auth-media-section::before {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    top: -80px;
    right: -80px;
    filter: blur(60px);
}

.fi-auth-layout.media-left .fi-auth-media-section::after {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    bottom: -50px;
    left: -60px;
    filter: blur(50px);
}
