body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.wrapper {
    width: 100%;
    height: 100vh;

    /* Native CSS gradient */
    background: linear-gradient(
        135deg,
        #dad9ff 0%,
        #f4f3ff 50%,
        #ffffff 100%
    );
background: #a4bfbd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;

    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

    /* Raise it 50px */
    transform: translateY(-200px);
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    opacity: 90%;
}

.title h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    color: #2a2a2a;
}

.message p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin: 0;
    color: #555;
}
