/* General styling for the form */
.form-tab-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 20px;
}

h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow fields to wrap for smaller screens */
}

.form-field {
    width: 48%; /* Two fields in a row */
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
}

.required {
    color: red;
}

/* Adjust layout for the second row */
.form-row .form-field:nth-child(3) {
    width: 32%; /* For 3rd field in the second row */
}

@media (max-width: 768px) {
    /* For small screens, stack fields vertically */
    .form-field {
        width: 100%; /* Make fields full width */
    }
}
