
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #003973, #005ea8);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    padding: 20px;
}

.logo {
    max-width: 300px;
    width: 80%;
    animation: pulse 3s infinite;
}

h1 {
    margin-top: 30px;
    font-size: 2em;
}

p {
    font-size: 1.2em;
    color: #cce6ff;
}

.loader {
    margin: 30px auto;
    border: 5px solid #cce6ff;
    border-top: 5px solid #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
