body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #10222E, #FFFFE3); 
    color: #2e2e2e; 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    color: #2e2e2e;
}

.logo {
    max-width: 70%; 
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 8px; 
}

h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #4a3b2a; 
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.loader {
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #4A90E2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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