@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');



.form-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}


.collbration-heading{
    text-align: center;
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.form-field {
    flex: 1;
    min-width: 250px;
    margin-bottom: 15px;
}

.form-field label {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
}

textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #003b4d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    max-width: 40%;
}

.submit-btn:hover {
    background-color: #005068;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
    }

    .form-row {
        flex-direction: column;
    }
}
