/* 尚品购（ShangPinGou） - 会员登录页面专用样式表 (login.css) */

.login-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e1e2f 0%, #2d1e3a 50%, #e4393c 100%);
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 460px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-header .logo-badge {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e4393c, #c02d30);
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(228, 57, 60, 0.35);
}

.login-header h2 {
    font-size: 22px;
    font-weight: bold;
    color: #333333;
}

.login-header p {
    font-size: 13px;
    color: #888888;
    margin-top: 4px;
}

/* 登录方式 Tab 切换 */
.login-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 25px;
}

.login-tab-item {
    flex: 1;
    text-align: center;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-tab-item.active {
    color: #e4393c;
    font-weight: bold;
    border-bottom: 2px solid #e4393c;
    margin-bottom: -2px;
}

/* 表单元素 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 6px;
}

.input-wrap {
    position: relative;
}

.input-wrap input {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.input-wrap input:focus {
    border-color: #e4393c;
    box-shadow: 0 0 0 3px rgba(228, 57, 60, 0.15);
}

.form-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666666;
    margin-bottom: 20px;
}

.form-tools label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.form-tools a {
    color: #888888;
}

.form-tools a:hover {
    color: #e4393c;
}

.btn-login {
    width: 100%;
    height: 45px;
    background-color: #e4393c;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(228, 57, 60, 0.3);
    transition: background-color 0.2s ease;
}

.btn-login:hover {
    background-color: #c02d30;
}

/* 第三方快捷登录 */
.third-party-login {
    margin-top: 25px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    text-align: center;
}

.third-party-login p {
    font-size: 12px;
    color: #999999;
    margin-bottom: 12px;
}

.third-party-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.third-party-icons span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.third-party-icons span:hover {
    background-color: #e4393c;
    color: #ffffff;
}

.login-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666666;
}

.login-footer-link a {
    color: #e4393c;
    font-weight: bold;
}
