@charset "UTF-8";

.toast {
    visibility: hidden;
    min-width: 250px; /* 最小宽度 */
    margin-left: -125px; /* 左右居中 */
    background-color: #333; /* 背景颜色 */
    color: #fff; /* 文字颜色 */
    text-align: center; /* 文字居中 */
    border-radius: 5px; /* 圆角 */
    padding: 16px; /* 内边距 */
    position: fixed; /* 固定位置 */
    z-index: 1; /* 确保在其他元素之上 */
    left: 47%; /* 水平居中 */
    bottom: 50%; /* 距离底部30px */
    font-size: 17px; /* 字体大小 */
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s; /* 动画效果 */
}

.toast.show {
    visibility: visible; /* 显示 */
    opacity: 1; /* 完全不透明 */
    bottom: 50%; /* 向上移动 */
}

.registerBox {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    background: var(--bg-color);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
}

.registerBox:target {
    visibility: visible;
    opacity: 1;
}

.register-content {
    position: relative;
    margin: 0rem auto;
    padding: 15px;
    top: 40%;
    max-width: 600px;
}

.register-content .close {
    position: absolute;
    right: 0px;
    top: -100px;
    transition: all 200ms;
    font-size: 50px;
    text-decoration: none;
    color: var(--heading-color);
}

.register-content .close:hover {
    opacity: 0.8;
    color: var(--heading-color);
}

.register-content form {
    border-radius: var(--border-radius);
    background: var(--bg-light);
    max-width: 640px;
    padding: 40px 40px;
}

.register-content form input {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    color: var(--font-color);
    height: 55px;
    padding: 0px 20px;
    width: 100%;
    border: 1px solid var(--bg-color);
    border-right: none;
    background: var(--bg-color);
    border-radius: var(--border-radius);

}

.register-content form button {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    border: none;
    background: var(--primary-color);
    padding: 0 20px;
    border-radius: var(--border-radius);
    height: 55px;
}

.register-content form button:hover {
    opacity: .8;
    box-shadow: none;
}

.register-content form input[type="search"]:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

.DFlex {
    display: flex !important
}

.Column {
    flex-direction: column !important
}

.Column-reverse {
    flex-direction: column-reverse !important
}

.Form-Item {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .Form-Item {
        transition: none
    }
}

.Form-Item[type=file] {
    overflow: hidden
}

.Form-Item[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.Form-Item:focus {
    color: #212529;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    outline: 0;
    box-shadow: none;
}

.Form-Item::-webkit-date-and-time-value {
    height: 1.5em
}

.Form-Item::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.Form-Item::placeholder {
    color: #6c757d;
    opacity: 1
}

.Form-Item:disabled,
.Form-Item[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.Form-Item::file-selector-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .Form-Item::file-selector-button {
        transition: none
    }
}

.Form-Item:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

.Form-Item::-webkit-file-upload-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .Form-Item::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }
}

.Form-Item:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.marb {
    margin-bottom: .5rem !important
}

.Jcb {
    justify-content: space-between !important
}

.BtnFocu {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.BtnFocu:hover {
    color: #fff;
    background-color: #f7553e;
    border-color: #f7553e;
}

.BtnFocu:focus,
.BtnFocu.focus {
    color: #fff;
    background-color: #f7553e;
    border-color: #f7553e;
    box-shadow: 0 0 0 0.2rem rgb(251 114 22 / 40%);
}

.BtnFocu.disabled,
.BtnFocu:disabled {
    color: #fff;
    background-color: #f7553e;
    border-color: #f7553e;
}

.BtnFocu:not(:disabled):not(.disabled):active,
.BtnFocu:not(:disabled):not(.disabled).active,
.show > .BtnFocu.dropdown-toggle {
    color: #fff;
    background-color: #f7553e;
    border-color: #f7553e;

}

.BtnFocu:not(:disabled):not(.disabled):active:focus,
.BtnFocu:not(:disabled):not(.disabled).active:focus,
.show > .BtnFocu.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}