/* Reset default styles */
body, html {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Courier New', Courier, monospace;
    color: #00FF00;
}

/* Container style */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Header style */
h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 10px;
}

/* Form container style */
.form-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
}

/* Form input style */
input[type="email"] {
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    width: 100%;
    background-color: #000;
    color: #00FF00;
    font-size: 1rem;
}

/* Submit button style */
input[type="submit"] {
    background-color: #00FF00;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #007F00;
}

/* Link style */
a {
    color: #00FF00;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

a:hover {
    color: #007F00;
}
