body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #f3f4f6;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 50vw;
    width: 100%;
    text-align: center;
}

.logo {
    width: 128px;
    height: 128px;
    margin-bottom: 1rem;
}

.title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #0ea5e9;
}

.strong {
    color: #1e3a8a;
    font-weight: bold;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.link {
    color: #0ea5e9;
    text-decoration: none;
}

.link:hover {
    color: #1e3a8a;
}

.footer {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 2rem;
}