/* 
   Steyp Migration Page
   Primary Color Theme: #50b15d 
   White Theme Version
*/

:root {
    /* Color Palette */
    --primary: #50b15d;
    --primary-light: #74e383;
    --primary-dark: #378542;
    
    /* White Theme Colors */
    --bg-color: #f8faf9; /* Soft off-white */
    --card-bg: rgba(255, 255, 255, 0.75);
    --border-subtle: rgba(255, 255, 255, 0.6);
    --border-hover: rgba(80, 177, 93, 0.3);
    
    --text-main: #1a231e;
    --text-muted: #576b5d;
    --text-gradient: linear-gradient(135deg, #1a231e 0%, #378542 100%);
    
    --shadow-base: rgba(0, 0, 0, 0.06);
    --shadow-hover: rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Important for abstract background */
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ==================================
   Abstract Background Animations
   ================================== */
.abstract-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    filter: blur(100px);
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35; /* Lighter opacity for white background */
    animation: floatingBlobs 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 60%);
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #89C739 0%, transparent 50%); /* Used logo's gradient color */
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes floatingBlobs {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(15%, 15%) scale(1.2);
    }
}

/* ==================================
   Glassmorphism Container
   ================================== */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 640px;
    padding: 20px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 40px -10px var(--shadow-base), 0 0 10px rgba(80, 177, 93, 0.05);
    border-radius: 28px;
    padding: 60px 48px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 25px 50px -12px var(--shadow-hover), 0 0 40px rgba(80, 177, 93, 0.1);
}

/* ==================================
   Logo & Header
   ================================== */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.logo-svg {
    height: 48px; /* Based on SVG viewBox proportions */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(26, 152, 124, 0.2));
    transition: transform 0.3s ease;
}

.glass-card:hover .logo-svg {
    transform: scale(1.03);
}

/* ==================================
   Typography
   ================================== */
.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* ==================================
   Status Indicator Badge
   ================================== */
.status-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(80, 177, 93, 0.08); /* Light green tint */
    border: 1px solid rgba(80, 177, 93, 0.2);
    padding: 12px 28px;
    border-radius: 50px;
}

.pulse-ring {
    position: relative;
    width: 12px;
    height: 12px;
    margin-right: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: ripple 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.6;
}

.status-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ==================================
   Responsive Adjustments
   ================================== */
@media (max-width: 600px) {
    .glass-card {
        padding: 48px 24px;
        border-radius: 20px;
    }
    
    .title {
        font-size: 2.3rem;
    }
    
    .subtitle {
        font-size: 1.05rem;
    }
    
    .logo-svg {
        height: 38px;
    }
}
