/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0c29; /* Deep dark background */
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    overflow: hidden;
    color: white;
}

/* Background decorative blobs for depth */
.background-blobs {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(to right, #ff00cc, #3333ff);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    animation: move 10s infinite alternate;
}

/* The Glass Card */
.glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    opacity: 0.8;
    background-color: #fff;
}

.logo span { font-weight: 300; }

.card {
    background: transparent !important;
    border: none;
    box-shadow: none;
}

h2 { font-size: 2.5rem !important; margin-bottom: 1rem; }

p { margin-bottom: 2rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }

/* Glossy Input & Button */
.notify-form {
    /* display: flex; */
    gap: 10px;
    margin-bottom: 2rem;
}

input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #fff ;
    font-size: 1.3rem !important;
    font-weight: 800;
}

button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    background: #00d2ff;
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

@keyframes move {
    from { transform: translate(-50%, -20%); }
    to { transform: translate(50%, 20%); }
}