.login-container {
    padding: 60px 20px 0;
    min-height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* LOGO区域 */
.logo-section {
    text-align: center;
    margin-bottom: 48px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 150px;  /* 放大LOGO */
    height: 150px;
    margin-bottom: 16px;
    object-fit: contain;
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    color: #1677ff;
}

/* 表单区域 */
.form-container {
    width: 100%;
    max-width: 340px;  /* 限制最大宽度 */
    margin: 0 auto;
}

/* 输入框样式 */
.van-field {
    background: #f7f8fa !important;
    border-radius: 28px !important;  /* 增大圆角 */
    padding: 14px 20px !important;  /* 增加内边距 */
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);  /* 添加轻微阴影 */
}

.van-field__control {
    font-size: 16px !important;
    color: #333 !important;
}

.van-field__control::placeholder {
    color: #bbb !important;
}

/* 只读输入框样式 */
.van-field__control[readonly] {
    background-color: #f5f5f5 !important;
    cursor: not-allowed !important;
    color: #999 !important;
}

/* 点击验证码输入框时提示用户 */
.van-field__control[readonly]:focus {
    outline: none !important;
}

/* 验证码按钮 */
.verify-btn {
    height: 24px;
    padding: 0 10px;
    font-size: 12px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid #1677ff;
    border-radius: 12px;
}

.verify-btn:active {
    opacity: 0.8;
}

/* 登录按钮 */
.login-btn {
    width: 100%;
    height: 44px;
    margin-top: 24px;
    font-size: 16px;
    background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
    color: #ffffff;
    border: none;
    border-radius: 22px;
    box-shadow: 0 4px 8px rgba(22, 119, 255, 0.2);
}

.login-btn:active {
    transform: scale(0.98);
}

/* 协议区域 */
.agreement {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 16px;
    padding: 0 12px;
}

.agreement .van-checkbox {
    justify-content: center !important;
}

.agreement .van-checkbox__label {
    color: #999;
    line-height: 1.5;
}

.agreement a {
    color: #1677ff;
    text-decoration: none;
    position: relative;
    padding: 0 1px;
}

.agreement a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1677ff;
    opacity: 0.5;
} 