/* 潭美霞朴摄影器材 - 登录/注册页面样式 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Microsoft YaHei", Arial, sans-serif; background: #f5f5f5; }
a { text-decoration: none; color: #e4393c; }
a:hover { text-decoration: underline; }

/* 登录容器 */
.login-container { 
    width: 100%; 
    min-height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.login-box { 
    width: 400px; 
    background: #fff; 
    border-radius: 8px; 
    padding: 40px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.login-box h2 { 
    text-align: center; 
    color: #333; 
    margin-bottom: 30px; 
    font-size: 24px;
}
.login-box p { 
    margin-bottom: 20px; 
}
.login-box label { 
    display: inline-block; 
    width: 70px; 
    text-align: right; 
    color: #666; 
    font-size: 14px;
}
.login-box input[type="text"], 
.login-box input[type="password"] { 
    width: 250px; 
    height: 36px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    padding: 0 10px; 
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.login-box input[type="text"]:focus, 
.login-box input[type="password"]:focus { 
    border-color: #e4393c; 
}
.login-box .login-btn { 
    text-align: center; 
    margin-top: 30px;
}
.login-box .btn-login { 
    width: 320px; 
    height: 40px; 
    background: #e4393c; 
    color: #fff; 
    border: none; 
    border-radius: 4px; 
    font-size: 16px; 
    cursor: pointer;
    transition: background 0.3s;
}
.login-box .btn-login:hover { 
    background: #c81d20; 
}
.login-box .login-links { 
    text-align: center; 
    font-size: 13px; 
    color: #999;
}
.login-box .login-links a { 
    margin: 0 8px; 
}

/* 注册页面 */
.reg-container { 
    width: 100%; 
    min-height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.reg-box { 
    width: 450px; 
    background: #fff; 
    border-radius: 8px; 
    padding: 40px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.reg-box h2 { 
    text-align: center; 
    color: #333; 
    margin-bottom: 30px; 
    font-size: 24px;
}
.reg-box p { 
    margin-bottom: 20px; 
}
.reg-box label { 
    display: inline-block; 
    width: 80px; 
    text-align: right; 
    color: #666; 
    font-size: 14px;
}
.reg-box input[type="text"], 
.reg-box input[type="password"], 
.reg-box input[type="tel"] { 
    width: 280px; 
    height: 36px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    padding: 0 10px; 
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.reg-box input[type="text"]:focus, 
.reg-box input[type="password"]:focus, 
.reg-box input[type="tel"]:focus { 
    border-color: #e4393c; 
}
.reg-box .reg-btn { 
    text-align: center; 
    margin-top: 30px;
}
.reg-box .btn-reg { 
    width: 360px; 
    height: 40px; 
    background: #e4393c; 
    color: #fff; 
    border: none; 
    border-radius: 4px; 
    font-size: 16px; 
    cursor: pointer;
    transition: background 0.3s;
}
.reg-box .btn-reg:hover { 
    background: #c81d20; 
}
.reg-box .reg-links { 
    text-align: center; 
    font-size: 13px; 
    color: #999;
}

/* 支付页面 */
.pay-container, .payment-container {
    width: 500px;
    max-width: 90%;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 8px;
    padding: 30px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}
.pay-box {
    width: 500px;
    max-width: 90%;
    background: #fff;
    border-radius: 8px;
    padding: 30px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.payment-container h2 { 
    text-align: center; 
    color: #333; 
    margin-bottom: 25px; 
    font-size: 22px;
}
.order-info { 
    margin-bottom: 20px; 
    padding-bottom: 20px; 
    border-bottom: 1px solid #eee;
}
.order-info p { 
    margin-bottom: 10px; 
    font-size: 14px; 
    color: #666;
}
.order-info .price { 
    color: #e4393c; 
    font-size: 20px; 
    font-weight: bold;
}
.payment-methods { 
    margin: 20px 0;
}
.payment-methods h3 { 
    font-size: 16px; 
    color: #333; 
    margin-bottom: 15px;
}
.pay-option { 
    display: flex; 
    align-items: center; 
    margin-bottom: 12px; 
    padding: 12px; 
    border: 1px solid #eee; 
    border-radius: 4px; 
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}
.pay-option:hover { 
    border-color: #e4393c; 
}
.pay-option input { 
    margin-right: 10px;
}
.btn-pay { 
    width: 100%; 
    height: 44px; 
    background: #e4393c; 
    color: #fff; 
    border: none; 
    border-radius: 4px; 
    font-size: 16px; 
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}
.btn-pay:hover { 
    background: #c81d20; 
}
.btn-back { 
    display: block; 
    text-align: center; 
    margin-top: 15px; 
    font-size: 14px; 
    color: #666;
}
.btn-back:hover { 
    color: #e4393c; 
    text-decoration: underline;
}
