@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");


@font-face {
    font-family: "Futura Std Book";
    src: url(../fonts/Futura-Std-Book.otf);
}

.Futura-Std-Book {
    font-family: "Futura Std Book";
}

@font-face {
    font-family: "Futura Std Light";
    src: url(../fonts/Futura\ Std\ Light.otf);
}

.Futura-Std-Light {
    font-family: "Futura Std Light";
}


:root {}

body,
html {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    --vw-base: calc(100vw / 1920);
    display: flex;
    flex-direction: column;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 15vw;
    position: relative;
    overflow: hidden;
    font-family: "Noto Sans TC";
    font-weight: 400;
    background-color: #3e4444;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    flex-shrink: 0;
}

.circle-hide {
    position: relative;
    flex-grow: 1;
    /* 占据剩余空间 */
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.circle {
    width: 50vw;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    /* 初始狀態為透明 */
    transition: opacity 1s ease;
    /* 設定淡入過渡效果 */
}

.main1 {
    width: 100%;
    height: calc(1050 * var(--vw-base));
    position: relative;
}

.contain {
    position: relative;
    width: calc(694 * var(--vw-base));
    margin: 0 auto;
    padding-top: calc(212 * var(--vw-base));
}

.mainlogo {
    position: relative;
    width: 100%;
    height: calc(125 * var(--vw-base));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-left: calc(223 * var(--vw-base));
    box-sizing: border-box;
}


.mainlogo .img {
    position: absolute;
    width: calc(245 * var(--vw-base));
    height: auto;
    left: 0;
    top: calc(2 * var(--vw-base));
}

.mainlogo .t1 {
    color: #FFFFFF;
    font-size: calc(20 * var(--vw-base));
    letter-spacing: 0.2em;
    font-family: "Futura Std Light";
    line-height: calc(20 * var(--vw-base));
}

.mainlogo .t2 {
    color: #FFFFFF;
    font-size: calc(20 * var(--vw-base));
    letter-spacing: 0.3em;
    font-family: "Noto Sans TC";
    font-weight: 300;
    line-height: calc(20 * var(--vw-base));
}

.mainform {
    position: relative;
    width: 100%;
    padding: calc(40 * var(--vw-base)) 0;
    margin-top: calc(10* var(--vw-base));
}

.mainform::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(1 * var(--vw-base));
    background-color: #ff6012;
    clip-path: inset(15% 0 15% 0);
}


.mainform::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(1 * var(--vw-base));
    background-color: #ff6012;
    clip-path: inset(15% 0 15% 0);
}


.info {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 0 calc(29 * var(--vw-base)) calc(29 * var(--vw-base)) calc(29 * var(--vw-base));
    padding: calc(48 * var(--vw-base)) calc(60 * var(--vw-base));
    box-sizing: border-box;
}

.info .tryadog {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(25 * var(--vw-base));
    height: calc(21 * var(--vw-base));
    background-color: #ff6012;
    clip-path: polygon(0 0, 100% 0, 0 100%);

}

.info .txt1 {
    position: relative;
    margin-bottom: calc(10 * var(--vw-base));
    color: #000;
    font-size: calc(25 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    line-height: calc(25 * var(--vw-base));
}

.info .txt2 {
    position: relative;
    margin-bottom: calc(25 * var(--vw-base));
    color: #000;
    font-size: calc(15 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    line-height: calc(21 * var(--vw-base))
}

.redline {
    width: 100%;
    height: calc(1 * var(--vw-base));
    background-color: #ff6012;
}

.acc,
.psw {
    position: relative;
    width: 100%;
    height: calc(45 * var(--vw-base));
    border: #a5a5a5 calc(1 * var(--vw-base)) solid;
    border-radius: calc(5 * var(--vw-base));
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.acc {
    margin: calc(23 * var(--vw-base)) 0 calc(17* var(--vw-base)) 0;
}


form input[type="text"],
form input[type="password"] {
    /* height: calc(45 * var(--vw-base)); */
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
    color: #333333;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    outline: none;
    padding-left: calc(20 * var(--vw-base));
    font-size: calc(22 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    line-height: calc(22 * var(--vw-base));
    letter-spacing: 0.05em;
    color: #000;
}

.info input::placeholder {
    width: 100%;
    height: inherit;
    color: #959595;
    font-size: calc(22 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    line-height: calc(22 * var(--vw-base));
    letter-spacing: 0.2em;
    text-align: center;
    text-indent: calc(-20*var(--vw-base));
}

.button {
    position: relative;
    display: flex;
    width: 100%;
    gap: calc(12 * var(--vw-base));
    margin-top: calc(35 * var(--vw-base));
}

.bt1,
.bt2 {
    background: none;
    /* 移除背景顏色 */
    border: none;
    /* 移除邊框 */
    padding: 0;
    /* 移除內邊距 */
    margin: 0;
    /* 移除外邊距 */
    box-shadow: none;
    /* 移除陰影 */
    cursor: pointer;
    /* 指定滑鼠游標為點擊狀態 */
    outline: none;
    font-size: calc(22 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.2em;
    width: 100%;
    height: calc(45 * var(--vw-base));
    border-radius: calc(5 * var(--vw-base));
}

.bt1,
.bt2 {
    border: #a5a5a5 calc(1 * var(--vw-base)) solid;
    color: #000;
    transition: background-color 0.4s ease, color 0.4s ease;
}



.bt2:hover,
.bt1:hover {
    border: #83dae2 calc(1 * var(--vw-base)) solid;
    background-color: #83dae2;
    color: #fff;
}

.error_page {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 11111;
    box-sizing: border-box;
    padding-top: calc(450 * var(--vw-base));
}

.error_contain {
    position: relative;
    margin: 0 auto;
    width: calc(1046 * var(--vw-base));
    height: calc(238 * var(--vw-base));
    display: flex;
    gap: calc(10 * var(--vw-base));
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: calc(14 * var(--vw-base))
}

.error_icon {
    position: relative;
    width: calc(55 * var(--vw-base));
    height: auto;
}

.error_txt {
    color: #000;
    font-size: calc(20 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    line-height: calc(20 * var(--vw-base));
    letter-spacing: 0.2em;
    text-align: center;
}

.bottom-bg {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}