* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft JhengHei', sans-serif;
}

body {
    background: url("../img/bg.png") no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 75px;
    width: 100%;
}

.header .logo {
    padding-top: 25px;
    margin-left: 240px;
}
.header .lang {
    margin-top: 27px;
    width: 400px;
    display: flex;
    height: 24px;
}

.header > .logo img {
    width: 388.38px;
    height: 50.99px;
}

.otp-container{
    background-image: url("../img/otp/border-web.png");
    width: 648px;
    height: 571px;
}

.otp-box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    padding: 60px 85px 126px;
}

.otp-titles{
    margin-left: 10%;
    font-family: PingFangSC-Semibold;
    font-size: 32px;
    color: #000000;
    /* text-align: center; */
    font-weight: 600;
    margin-top: 3%;
}

.otp-input-container {
    position: relative;
}
.otp-input {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #CEDCE6;
    border-radius: 8px;
    height: 64px;
    font-family: PingFangHK-Regular;
    font-size: 20px;
    color: #85929C;
    font-weight: 400;
    padding-left: 50px;
    width: 100%;
}
.opt-input-icon{
    background-image: url("../img/otp/icon/user.png");
    position:absolute;
    left:14px;
    top:50%;
    transform: translateY(-50%);
    color:#7c8ca0;
    font-size:18px;
    pointer-events:none;
    z-index: 1;
    width: 24px;
    height: 24px;
}


.otp-input::before {
    content: "aaa";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #7c8ca0;
}

.otp-hint {
    position: relative;
    background: #f3f7fc;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 20px;
    color: #444;
    text-align: left;
    line-height: 1.6;
}

/* 小三角 */
.otp-hint::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 25px;
    width: 27px;
    height: 29px;
    background: #f3f7fc;
    /* transform: rotate(74deg); */
    clip-path: polygon(0% 100%, 100% 100%, -6% 0%);
    border-radius: 4px;
}

.otp-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #1a78e2;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.otp-btn:hover {
    background-color: #176ac8;
}

.otp-btn-secondary {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    border: 1px solid #cdd8e3;
    border-radius: 8px;
    background-color: #fff;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: background-color 0.2s ease;
}

.otp-btn-secondary:hover {
    background-color: #f3f6fa;
}