body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #004AAD
   
}

.container {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.coming-soon {
    font-size: 24px;
    color: #fff;
    margin-bottom: 40px;
}

form {
    display: flex;
    justify-content: center;
}

input[type="email"] {
    
    width: 50%; /* Set width to 50% */
    max-width: 150px; /* Add max-width to limit the width */
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}


button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
