@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Deep tech blue/black */
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* --- Background Animation --- */
.bg-animation {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, rgba(15,23,42,0) 50%),
                radial-gradient(circle, rgba(139,92,246,0.1) 100%, rgba(15,23,42,0) 50%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Glassmorphism Card --- */
.container {
    position: relative;
    z-index: 10;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 600px;
    width: 90%;
    animation: float 6s ease-in-out infinite;
}

/* --- Typography & Elements --- */
.logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

p.tagline {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.divider {
    height: 1px;
    width: 50px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 2rem auto;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
    margin-bottom: 1.5rem;
}

.login-link {
    display: block;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.3s;
}

.login-link:hover {
    color: #94a3b8;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .logo { font-size: 2rem; }
    .container { padding: 2rem; }
}