/* 登录表单页样式 */

/* 标题区 */
.title-area {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 32px;
}

.main-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.sub-title {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
    margin-bottom: 16px;
}

/* Logo容器 */
.logo-container {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 表单核心区 */
.form-area {
    padding: 0 24px;
}

/* 输入框组 */
.input-group {
    position: relative;
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.input-icon {
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-dark);
}

input::placeholder {
    color: var(--text-light);
}

/* 短信验证码区 */
.sms-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.sms-input {
    width: 70%;
    margin-bottom: 0;
}

.sms-button {
    width: 25%;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.sms-button:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
}

.forgot-password {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
}

/* 登录按钮 */
.login-button {
    width: 100%;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* 注册链接 */
.register-link {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 32px;
}

.register-link span {
    font-size: 14px;
    color: var(--text-gray);
}

.register-link a {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}