body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: black; /* Set background to black */
    color: white; /* Set text color to white */
    margin: 0;
    padding: 20px; /* Add padding for better readability */
}

.text-content {
    max-width: 80%; /* Constrain text content to 50% width */
    text-align: left;
    margin: 0 auto; /* Center the text content */
}

.container {
    text-align: center;
    background: white; /* Set background to white for the form container */
    color: black; /* Set text color to black for the form container */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    max-width: 500px; /* Set a maximum width for the form container */
    width: 100%;
    margin-top: 20px; /* Add margin to separate from other content */
}

h1, h2, h3, h4 {
    color: white; /* Set headings to white */
}

p {
    color: white; /* Set paragraphs to white */
}

.container h1, .container p#notification {
    color: black; /* Set form container headings and notification text to black */
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Add gap between input and button */
    flex-direction: row; /* Arrange elements in a row */
}

input[type="email"] {
    padding: 10px;
    width: 70%; /* Adjust width to fit both input and button */
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background: #007bff;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    height: 44px; /* Ensure button height matches input height */
}

button:hover {
    background: #0056b3;
}

.timer {
    margin-top: 20px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#countdown div {
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 4px;
    width: 80px;
    text-align: center;
}

#countdown div span {
    font-size: 2em;
}
