section#login {
    height: calc(60vh - 5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    //color: #fff;
}

#login a {
    text-decoration-line: none;
    color: #abc1ee;
}

.login-wrapper {
    background-color: #fff;
    width: 398px;
    height: 488px;
    border-radius: 15px;
    padding: 0 50px;
    margin: 0 auto;
}

.login-btn {
    border: none;
    outline: none;
    font-size: 18px;
    margin-top: 80px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0);
    color: rgba(0, 0, 0, 0.5);
}

.active-login-btn {
    border: none;
    outline: none;
    font-size: 18px;
    margin-top: 80px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0);
    color: rgba(8, 93, 173, 0.6);
}

.login-separator {
    display: inline-block;
    margin: 0 10px; /* 根据需要调整间距 */
    color: #ccc; /* 分隔线的颜色 */
}

.verification-code-container {
    display: flex;
    align-items: center;

}

.verification-code-container .input-item {
    /* 如果有必要，可以调整验证码输入框的样式 */
    flex: 1; /* 让输入框占据可用空间的大部分 */
}

.send-verification-code {
    /* 发送验证码按钮的样式 */
    /*background-color: #f2f2f2; !* 或者其他你想要的背景色 *!*/
    margin-bottom: 20px;
    border: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(128, 125, 125);
    font-size: 15px;
    outline: none;
    background: rgba(255, 255, 255, 0);
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer; /* 鼠标悬停时显示小手图标 */
}

.input-item {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(128, 125, 125);
    font-size: 15px;
    outline: none;
}

.input-item:placeholder {
    text-transform: uppercase;
}

.btn {
    border: none;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-top: 40px;
    color: #fff;
    //background-image: linear-gradient(to right, #a6c1ee, #fbc2eb);
    background-image: linear-gradient(120deg, #76daec 0%, #c5a8de 100%);
}

.btn:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.msg {
    text-align: center;
    line-height: 88px;
}

#notice {
    display: block;
    text-align: center;
    color: red;
}

#sms-notice {
    display: block;
    text-align: center;
    color: red;
}
