/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #004aad, #00aaff);
    color: white;
    text-align: center;
}

/* Logo */
.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Heading */
.title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Subtitle */
.lead {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Coming Soon Message */
.coming-soon {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffdd57;
}

/* Input Field */
.input-group input {
    border-radius: 5px 0 0 5px;
}

/* Button */
.btn-primary {
    background-color: #ff5733;
    border: none;
    border-radius: 0 5px 5px 0;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e04e29;
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .title {
        font-size: 2rem;
    }
}
