* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body, html {
    height: 100%;
    background: #000; /* black background */
}

.coming-soon {
    position: relative;
    height: 100vh;
    background: #000; /* black background (no image) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #ffffff00,
        #51c4bd55,
        #ffffff00
    );
}

.content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #51c4bd; /* heading in teal */
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff; /* white */
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.notify-form input {
    padding: 10px;
    width: 250px;
    border-radius: 5px;
    border: 1px solid #51c4bd;
    background: #ffffff00;
    color: #fff;
}

.notify-form input::placeholder {
    color: #ffffff;
}

.notify-form button {
    padding: 10px 20px;
    border: none;
    background: #51c4bd;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.notify-form button:hover {
    background: #3aa79f;
}
