.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
   
}

.form-header {
    flex: 1;
    padding-right: 20px;
    text-align: left;
}

form {
    flex: 1;
    max-width: 500px;
    
}

form input,
form select,
form button {
    width: calc(50% - 10px);
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    margin-right: 10px;
    border-radius: 50px;
}

form input[type="file"] {
    width: 50%;
    padding: 3px;
}

form button {
    width: 100%;
    background-color:#09143C;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #343a40;
}
.error-message {
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
    display: none; /* Hidden by default, shown when validation fails */
}


@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .form-header,
    form {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 500px) {
    form input,
    form select {
        width: 100%;
        margin-right: 0;
    }
}
