/**
 * Native <select> cannot use display:flex / grid / align-items.
 * Chrome and Edge on Windows then clip or garble the selected value.
 * This file is loaded last in the layout so page CSS cannot reintroduce that.
 */
html body select:not([multiple]):not([size]),
html body select.form-control:not([multiple]):not([size]),
html body select.form-select:not([multiple]):not([size]),
html body select.custom-select:not([multiple]):not([size]) {
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    flex: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100%;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0 2.5rem 0 0.9rem !important;
    line-height: 42px !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 14px !important;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    vertical-align: middle;
    cursor: pointer;
}

html body select:not([multiple]):not([size]):focus,
html body select.form-control:not([multiple]):not([size]):focus,
html body select.form-select:not([multiple]):not([size]):focus,
html body select.custom-select:not([multiple]):not([size]):focus {
    display: block !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0 2.5rem 0 0.9rem !important;
    line-height: 42px !important;
    color: #0f172a !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%232563eb' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 14px !important;
    border-color: #2563eb;
    outline: none;
}

html body select option,
html body select.form-control option {
    color: #0f172a !important;
    background-color: #fff !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
}

html body input.form-control:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="color"]):not([type="button"]):not([type="submit"]):not([type="reset"]),
html body input.form-select {
    display: block !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 0.9rem !important;
    line-height: 1.4 !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    background-color: #fff !important;
    box-sizing: border-box !important;
}

html body .auth-cosmic input.form-control:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="color"]):not([type="button"]):not([type="submit"]):not([type="reset"]) {
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 2.4rem 0 2.55rem !important;
    color: #f8fafc !important;
    background-color: rgba(15, 23, 42, 0.72) !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

html body .auth-cosmic input.form-control:focus {
    color: #fff !important;
    background-color: rgba(15, 23, 42, 0.92) !important;
}

html body .auth-cosmic input.form-control::placeholder,
html body .auth-cosmic input::placeholder {
    color: #64748b !important;
}

html body textarea.form-control {
    display: block !important;
    height: auto !important;
    min-height: 88px !important;
    max-height: none !important;
    padding: 0.65rem 0.9rem !important;
    line-height: 1.45 !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    background-color: #fff !important;
    white-space: pre-wrap !important;
    overflow: auto !important;
}

html body .form-control::placeholder,
html body input::placeholder,
html body textarea::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}

html body label,
html body .form-label,
html body .form-group > label {
    color: #334155;
    font-weight: 600;
    overflow: visible;
    line-height: 1.3;
}

html body .form-group > label {
    display: block;
    margin-bottom: 0.4rem;
    white-space: nowrap;
}
