.form-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.user-form {
    width: 100%;
    max-width: 500px;
    /* adjust as needed */
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.input-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
    /* adjust color as needed */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    /* adjust color as needed */
}

.submit-btn-wrapper {
    text-align: center;
}

.submit-btn {
    padding: 10px 20px;
    background-color: #007bff;
    /* adjust color as needed */
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
    /* adjust color as needed */
}

.form-section {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px;
}

.form-section legend {
    font-weight: bold;
    color: #007bff;
    /* adjust color as needed */
    padding: 0 10px;
}

.form-section .form-group:last-child {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.input-group {
    margin-bottom: 10px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-sizing: border-box;
}


/* Override styles for checkboxes */
.input-group input[type="checkbox"] {
    width: auto;
    /* Reset width to automatic for checkboxes */
    padding: 0;
    /* Remove padding */
    margin-right: 10px;
    /* Small right margin for some spacing */
    vertical-align: middle;
    /* Align it with the label text */
}

.form-label {
    display: block;
    /* Ensure labels take up the full width */
}

/* Align checkbox with its label */
.input-group {
    display: flex;
    align-items: center;
}