body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9fafb;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    text-align: center;
}

.container {
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* These lines hide the text */
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
}

.logo img {
    /* Ensure the image stays visible even when text is hidden */
    text-indent: 0; 
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

p {
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #9ca3af;
}