/* Fixes Bootstrap 5 and default SlotCatalog styles */

/* Override Bootstrap global border radius */
:root {
    --bs-border-radius: 1.5rem;
}

/* Adds spacing between floating labels and inputs in forms */
.form-floating {
    padding-bottom: 1rem;
}

/* Resizes textarea for floating inputs */
.form-floating textarea.form-control {
    height: 10rem;
}

/* Customizes the primary button colors */
.btn-primary {
    --bs-btn-bg: #78ae1b;
    --bs-btn-border-color: #78ae1b;
    --bs-btn-hover-bg: #6c9c18;
    --bs-btn-hover-border-color: #669816;
    --bs-btn-focus-shadow-rgb: 120, 174, 27;
    --bs-btn-active-bg: #608b15;
    --bs-btn-active-border-color: #587912;
    --bs-btn-disabled-bg: #78ae1b;
    --bs-btn-disabled-border-color: #78ae1b;
}

/* Customizes the primary button spacing */
.btn {
    --bs-btn-padding-x: 4rem
}

/* Customizes the colors */
:root {
    --bs-secondary-color: rgb(191, 191, 191, .75);
}

/* Customizes forms */
form {
    color: #c0c0c0;
}
.help-text p + p {
    margin-top: .5rem;
}
