* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
html,
body {
    width: 100%;
    height: 100%;
}

header {
    background-color: #111827;
    padding: 1rem;
    color: #fff;
    text-align: center;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    width: 100%;
    padding: .5rem;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .6);
}

form h2 {
    text-align: center;
    margin-bottom: 1rem;
}
label {
    font-size: 16px;
    font-weight: 600;
}

input {
    margin-bottom: 1rem;
    padding: .5rem;
    outline: none;

}

button {
    margin-top: 1.5rem;
    padding: .5rem;
    border: none;
    color: #fff;
    background-color: #111827;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

#countdown {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff0000;
}

.subscription_closed {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80vh;
    color: #ff0000;
    text-transform: uppercase;
}