.form-group {
    margin-bottom: 1rem;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #303030;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #868686;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:not(textarea) {
    height: 34px;
}
.form-control.form-textarea {
    height: 106px;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #303030;
    text-align: right;
    white-space: nowrap;
    background-color: #ececec;
    border: 1px solid #868686;
    border-radius: 0.25rem;
}

.input-group>.form-control, 
.input-group>.form-floating, 
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group>:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group>:not(:first-child) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
label.label-bold {
    font-weight: 600;
}

.field-error {
    color: #dd2b0e;
    font-size: 0.875rem;
}

.form-input:focus, 
.form-textarea:focus, 
.form-select:focus, 
.form-multiselect:focus {
    --tw-ring-color: #f2304d;
    border-color: #f2304d;
}

.input-radio {
    display: inline-block;
    margin-right: 12px;
}
.input-radio label {
    margin-left: 4px;
}

.form-checkbox,
.form-radio {
    font-size: 0.875rem;
    line-height: 1rem;
    color: #303030;
    border-radius: 0.25rem;
    background-color: #fff;
    margin-top: -2px;
}

.form-checkbox:focus,
.form-radio:focus {
    --tw-ring-color: #f2304d;
}

.form-toggle {
    width: 3.5rem;
    height: 1.75rem;
    background-color: #f2304d;
    border-radius: 9999px;
}
.form-toggle:after {
    position: absolute;
    content: '';
    top: 0.125rem;
    left: 2px;
    background-color: #ffffff;
    border-radius: 9999px;
    width: 1.5rem;
    height: 1.5rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.peer:checked ~ .form-toggle {
    background-color: #057A55;
}
.peer:checked ~ .form-toggle:after {
    transform: translateX(114%);
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    padding-left: .5rem;
    vertical-align: top;
    cursor: pointer;
}

.submit-container {
    margin-top: 16px;
}

.divide {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.btn {
    border-width: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    background-color: #303030;
    line-height: 1rem;
    color: #fff;
    fill: currentColor;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.btn-block {
    width: 100%;
    margin: 0;
    margin-bottom: 1rem;
}

.btn-inline-block {
    display: inline-block;
    margin: 0;
    margin-bottom: 1rem;
}

.tabs .active {
    color: #f2304d;
    border-color: #f2304d;
    cursor: pointer;
}