﻿/* 会员登录注册 WAP移动端适配 */
.reg-wrap, .login-wrap {
    padding: 30px 10px;
    background: #f8f8f8;
    min-height: calc(100vh - 260px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.reg-box, .login-box {
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.reg-title, .login-title {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 24px;
}

.form-item {
    margin-bottom: 18px;
}

    .form-item label {
        display: block;
        margin-bottom: 6px;
        color: #555;
        font-size: 14px;
    }

    .form-item input {
        width: 100%;
        height: 42px;
        padding: 0 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 15px;
    }

        .form-item input:focus {
            border-color: #ff7820;
            outline: none;
        }

.tip-text {
    color: #f04040;
    font-size: 13px;
    margin-bottom: 10px;
    text-align: center;
}

.reg-btn, .login-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 6px;
    background: #ff7820;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.link-row {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}

    .link-row a {
        color: #ff7820;
        text-decoration: none;
    }
