/* Reset & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', system-ui, -apple-system, sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Animated Gradient Background */
    /* Light Blue to Light Purple colors */
    background: linear-gradient(-45deg, #e0c3fc, #8ec5fc, #c2e9fb, #d1c4e9);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;

    color: #2c3e50;
    /* Dark slate for contrast */
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.logo {
    position: absolute;
    top: 40px;
    left: 48px;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #1765d0;
}

.content {
    text-align: center;
    padding: 3rem 4rem;

    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);

    max-width: 90%;
    width: auto;
}

h1 {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.5;
    color: #2c3e50;
    letter-spacing: -0.01em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo {
        top: 24px;
        left: 24px;
        font-size: 1.25rem;
    }

    .content {
        padding: 2rem;
        margin: 0 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }
}