body {
    font-family: 'Poppins', sans-serif;
    background-color: #F9FBFF;
    color: #045DE8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #DCECF8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

a {
    color: #045DE8;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}