/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
    width: 90%;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.notify {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    min-width: 240px;
}

button {
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    background: #2563eb;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #1d4ed8;
}

footer {
    margin-top: 35px;
    font-size: 0.9rem;
    opacity: 0.6;
}
