body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f3f4f6;
}

.coming-soon-container {
    text-align: center;
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.notify-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notify-form input {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.notify-form button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: #4CAF50;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    outline: none;
}

.notify-form button:hover {
    background: #45a049;
}
