/* Ocean Cyan Gradient Background */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #00c6fb, #005bea);
    font-family: Arial, sans-serif;
}

/* Glass effect card */
.glass-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 70px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* Text styling */
h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
