body{
    background: rgba(245, 245, 245, 1);
}
/* 内容区域样式 */
.content {
    width: 478px;
    height: 88vh;
    margin: 0px auto;
    padding: 30px;
    font-size: 14px;
}

h1 {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 38px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 32px;
    color: rgba(13, 13, 13, 1);
    vertical-align: top;
}

/* 表单样式 */
.form-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.form-item label {
    width: 100px;
    text-align: right;
    margin-right: 10px;
    line-height: 38px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 1);
}

.input-wrapper {
    flex: 1;
}

.required {
    color: #f44336;
    margin-right: 4px;
}

input {
    width: 260px;
    height: 38px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid rgba(217, 217, 217, 1);
    padding: 0 12px;
    font-size: 14px;
}
input.success {
    border-color: rgba(6, 171, 0, 1);
}
input.error {
    border-color: #f44336;
}
input:focus {
    outline: none;
    border-color: rgba(108, 140, 245, 0.856);
    /* box-shadow: 0 0 5px rgba(108, 140, 245, 0.5); */
}
.hint {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
}

.captcha-wrapper {
    display: flex;
    gap: 10px;
}
#captcha{
    width: 150px;
    height: 38px;
}
.captcha-image {
    width: 96px;
    height: 38px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-register {
    width: 260px;
    height: 38px;
    line-height: 38px;
    opacity: 1;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    background: linear-gradient(180deg, rgba(0, 91, 172, 1) 0%, rgba(23, 141, 245, 1) 100%);
    border: 1px solid rgba(0, 91, 171, 1);
    margin: 0 auto;
    color: rgba(255, 255, 255, 1);
    margin-left: 95px;
    cursor: pointer;
    margin-top: 10px;
}
.btn-register:hover{
    color: rgba(255, 255, 255, 1);
    background: rgba(22, 121, 219, 1);
    border: 1px solid rgba(0, 91, 171, 1);
    box-shadow:inset 0px 0px 4px  rgba(255, 255, 255, 1);
}
.btn-register:active{
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(180deg, rgba(0, 91, 172, 1) 0%, rgba(23, 141, 245, 1) 100%);
    border: 1px solid rgba(0, 91, 171, 1);
    box-shadow:inset 0px 0px 4px  rgba(255, 255, 255, 1);
}
.btn-register:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(56, 56, 56, 1);
}

.login-link a {
    color: rgba(0, 91, 171, 1);
    text-decoration: none;
}
