/* Global styles */
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
.comming-soon {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #EBF5FF, #FFFFFF);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Main container */
.cs-container {
    max-width: 900px; /* Increased width */
    width: 90%;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Title & Message */
.cs-content h1 {
    color: #1C64F2;
    font-size: 2.8rem; /* Bigger */
    margin-bottom: 10px;
}

.cs-content p {
    color: #1A56DB;
    font-size: 1.3rem;
}

/* Form container */
.cs-form-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 500px;
}

/* Form title */
.cs-form-title {
    color: #1A56DB;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* Form layout */
form {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Wrap if needed */
}

/* Input field */
.cs-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 65%; /* Wider */
    font-size: 1rem;
}

/* Submit button */
.cs-button {
    background: #1C64F2;
    color: white;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

.cs-button:hover {
    background: #1A56DB;
}

/* Success message */
.cs-hidden {
    display: none;
    color: green;
    font-size: 1rem;
    margin-top: 10px;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .cs-container {
        width: 95%;
        padding: 30px;
    }

    .cs-content h1 {
        font-size: 2.2rem;
    }

    .cs-content p {
        font-size: 1.1rem;
    }

    form {
        flex-direction: column;
    }

    .cs-input {
        width: 100%;
    }

    .cs-button {
        width: 100%;
    }
}
