:root {
    --primary: #2d2e50;
    --accent: #e8d7d7;
    --background: #ffffff;
    --font: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 90%;
    width: 400px;
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.logo {
    width: 140px;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.loader {
    margin: 1rem auto;
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.progress-bar-inner {
    height: 100%;
    width: 0%;
    background: var(--primary);
    animation: grow 3s linear forwards;
}

@keyframes grow {
    to { width: 100%; }
}

.footer {
    font-size: 0.75rem;
    margin-top: 1.5rem;
    color: #888;
}