body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #f5f7fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 450px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1.2s ease-in-out;
}

.logo {
    width: 340px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    margin: 0;
    font-weight: 600;
    font-size: 28px;
    color: #1a1a1a;
}

h2 {
    margin-top: 4px;
    font-weight: 400;
    color: #4a4a4a;
}

.tagline {
    margin: 12px 0 20px;
    font-size: 15px;
    color: #666;
}

.loader {
    border: 6px solid #eee;
    border-top: 6px solid #3B82F6; /* blue for AfreeMosi theme */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

.footer {
    margin-top: 18px;
    font-size: 13px;
    color: #888;
}

/* Animations */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}