/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.3em;
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #ddd;
}

.subtext {
    font-size: 1em;
    margin-bottom: 2em;
    color: #ccc;
}

form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    width: 250px;
}

button {
    padding: 10px 20px;
    background-color: #f39c12;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #e67e22;
}
