/* This CSS ensures form labels have consistent width and alignment */
.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group .label-container {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group label.form-label {
    display: inline-block;
    width: 100%;
    font-weight: 500;
}

/* For the signup form specifically */
form.signup .form-label {
    text-align: left;
}

/* Field container styles */
.form-group .field-container {
    width: 100%;
}

/* Ensure all form controls maintain consistent width */
.form-control, 
.form-select,
.custom-file-input {
    width: 100%;
}

/* Ensure help text and error messages align properly */
.form-text,
.invalid-feedback {
    display: block;
    width: 100%;
    padding-left: 0;
}

/* For larger screens, add more space between label and input */
@media (min-width: 768px) {
    .form-group {
        display: block;
    }
}

/* Add custom styling for the signup form */
.signup .form-group {
    margin-bottom: 1.25rem;
}
