body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff8e1; /* Light yellow background */
    color: #333;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
}

.logo {
    font-size: 50px;
    display: block;
    margin-bottom: 20px;
}

h1 {
    font-weight: 600;
    color: #ff9800; /* Mango Orange */
    margin-bottom: 10px;
}

p {
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time {
    font-size: 14px;
    font-weight: 400;
}

.time span {
    display: block;
    font-size: 30px;
    font-weight: 600;
    color: #ff9800;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

input[type="email"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 60%;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #ff9800;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

button:hover {
    background-color: #e68a00;
}
