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

/* Body Style */
body {
    background-color: #121212; /* Dark background */
    color: #ffffff; /* White text for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #A480F2; /* New theme color */
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.85;
}

/* Signup Form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.signup-form input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #A480F2; /* Border color updated */
    border-radius: 5px;
    background: #1e1e1e;
    color: #ffffff;
    font-size: 1rem;
}

.signup-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #A480F2; /* Button color updated */
    color: #121212;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.signup-form button:hover {
    background: #8c6bd2; /* Slightly darker on hover */
}

/* Privacy Statement Style */
.privacy-statement {
    font-style: italic;
    opacity: 0.7; /* Slight transparency */
    color: #A480F2; /* Privacy statement color updated */
    margin-top: 20px;
    font-size: small;
}