* {
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'Novecento-Wide-Bold-2';
    src: url(../fonts/Novecento-Wide-Bold-2.otf);
    font-style: normal;
    font-weight: normal;
}
@font-face{
    font-family: 'zunyasong';
    src: url(../fonts/方正准雅宋简体.TTF);
    font-style: normal;
    font-weight: normal;
}
body {
    height: 100vh;
    background: url(../image/denlu.png) no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 给盒子设置毛玻璃效果 */
.box {
    width: 350px;
    height: 350px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    background: rgba(50, 50, 50, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.box > h2{
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-family: 'Novecento-Wide-Bold-2';
}

/* 定义提示词，使其排成一列 */
.box .input-box{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.box .input-box label {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 5px;
    font-family: 'zunyasong';
}

/* 输入框毛玻璃 */
.box .input-box input {
    letter-spacing: 1px;
    font-size: 14px;
    box-sizing: border-box;
    width: 250px;
    height: 35px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.2);
    outline: none;
    padding: 0 12px;
    color: rgba(255,255,255,0.9);
    transition: 0.2s;
}

.box .input-box input:focus {
    border: 1px solid rgba(255,255,255,0.8);
}

.box .btn-box {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box .btn-box > div{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box .btn-box > div > button{
    outline: none;
    margin-top: 10px;
    display: block;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.2s;
    
}
.box .btn-box > div > button:nth-of-type(1),
.box .btn-box > div > button:nth-of-type(2) {
    width: 100px;
    height: 35px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(18, 107, 174, 0.7);
    background: rgba(33, 119, 184, 0.5);
}
.box .btn-box > div > button:hover {
    border: 1px solid rgba(251, 128, 71, 0.7);
    background: rgba(251, 128, 71, 0.5);
}