* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #2980b9, #6dd5fa, #ffffff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.coming-soon h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

#countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.time-box {
    margin: 0 10px;
    text-align: center;
}

.time-box span {
    display: block;
    font-size: 2rem;
}

.label {
    font-size: 1rem;
}

.notify-form {
    display: flex;
    justify-content: center;
}

.notify-form input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    width: 250px;
}

.notify-form button {
    padding: 10px;
    font-size: 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notify-form button:hover {
    background-color: #2980b9;
}
