.pageWrapper {
    width: 100vw;
    height: fit-content;
    color: #FFF;
    margin-top: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    background: url("../img/repeated_pattern.webp") repeat center center;
    background-color: #000;
}

.pageTitle {
    font-size: 40px;
    font-weight: bold;
    margin: 20px 0px;

    width: 60vw;
    max-width: 600px;
    min-width: 300px;
}

/* 折叠框 */
.contentBox {
    margin: 15px 0;
    background: #262626;
    padding: 5px;
    border-radius: 15px;
    width: 60vw;
    max-width: 600px;
    min-width: 300px;

    height: fit-content;
    overflow: hidden;
}

.contentTrigger {
    background: inherit;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    transition: 0.1s all;
    user-select: none;
    font-size: 20px;
    font-weight: 900;
}

.contentTrigger:hover {
    background: #444;
}

.contentBox .content {
    border-top: 1px solid #444;
    padding-top: 3px;
    font-size: 18px;
    margin: 2px 5px;
}

/* 登录框 */
.loginBox {
    margin: 15px 0;
    background: #262626;
    padding: 5px;
    border-radius: 15px;
    width: 60vw;
    max-width: 600px;
    min-width: 300px;

    height: fit-content;
    overflow: hidden;
}

.loginBoxTitle {
    padding: 5px;
    user-select: none;
    font-size: 20px;
    font-weight: 900;
}

.loginBox .loginBoxForm {
    border-top: 1px solid #444;
    padding-top: 3px;
    font-size: 18px;
    margin: 2px 5px;
}

.loginBoxForm .row {
    display: flex;
    flex-direction: row;
    width: 60%;
    min-width: 290px;
    max-width: 400px;
    flex-wrap: nowrap;
    margin: 10px 0;
}




.textInput {
    background-color: #171717;
    border: 2px solid #2b2b2b;
    color: #FFF;
    padding: 10px 15px;
    border-radius: 15px;
    outline: none;
    font-size: 1em;
    margin: 0 3px;

    flex: 1;
    width: 100%;
}

#verificationCodeCanvas {
    background-color: #171717;
    border: 2px solid #171717;
    border-radius: 15px;
    margin: 0 3px;
    min-height: 42px;
    cursor: pointer;
}

.sendSmsButton {
    background-color: #333;
    border: 2px solid #555;
    color: #EEE;
    border-radius: 15px;
    padding: 8px 10px;
    font-size: 0.875em;
    transition: 0.1s all;
    margin: 0px 3px;
    cursor: pointer;
}

.sendSmsButton:active {
    background-color: #555;
    border: 2px solid #333;
}

.submitButton {
    background-color: #0085FF;
    border: 2px solid #0061bb;
    color: #FFF;
    border-radius: 15px;
    padding: 8px 20px;
    font-size: 0.875em;
    transition: 0.1s all;
    margin: 0px 3px;
    cursor: pointer;
    flex: 1;
}

.submitButton:active {
    background-color: #0061bb;
    border: 2px solid #0085FF;
}

@media (min-width: 700px) {
	.loginBox .loginBoxForm {
	    background: url("../img/login_bg1.webp") no-repeat center center;
        background-size: cover;
        box-shadow: inset -30px -30px 50px 0px #262626;
    }
}