.login-box {
    width: 400px;
}

.register-box {
    margin: 50px auto;
    width: 860px;
}

.app-header {
    border-bottom: 0;
}

.input-group.required .col-form-label:before {
    content:"*";
    color:red;
}

.warning-dot::before {
    content: "•";
    color: yellow;
    font-size: 1.2em;
    margin-right: 5px;
}

.danger-dot::before {
    content: "•";
    color: red;
    font-size: 1.2em;
    margin-right: 5px;
}

.select2-container--default {
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.select2-container--disabled {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: var(--bs-body-bg);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    color: var(--bs-body-color);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice span {
    color: var(--bs-secondary-bg);
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    background-color: transparent;
    color: var(--bs-body-color);
    border: none;
    height: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single,
.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: transparent;
    border: none;
    height: auto
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bs-body-color);
    line-height: 36px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
    right: 8px;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: var(--bs-secondary-bg);
    cursor: default
}

.select2-results__option {
    color: var(--bs-body-bg);
}

.dt-buttons {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.image-preview {
    position: relative;
    display: inline-block;
}
.remove-image {
    position: absolute !important;
    top: 5px;
    right: 5px;
    border: 1px solid #fff;
    padding: 4px 9px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}
.image-preview.removing {
    opacity: 0.5;
    transition: opacity 0.3s;
}
