* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding-bottom: 60px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #6699ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 1000;
}

.header-title {
    font-size: 18px;
    font-weight: bold;
}

.header-back {
    cursor: pointer;
    font-size: 14px;
}
.main-cart-content {
    margin-top: 40px;
    padding: 15px;
}

.main-content {
    margin-top: 50px;
    padding: 15px;
}

/* 登录页面样式 */
.login-container {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #6699ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.captcha-section {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-img {
    width: 100px;
    height: 40px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f8f9fa;
}

.role-selector {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.role-option {
    flex: 1;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.role-option.active {
    border-color: #6699ff;
    background-color: #e6f4ff;
    color: #6699ff;
    font-weight: 500;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6699ff 0%, #3d7cc6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(22, 119, 255, 0.3);
    }

.logo {
    text-align: center;
    margin-bottom: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #6699ff;
    letter-spacing: 2px;
}

.company-name {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

/* 商品列表页面样式 */
.product-filters {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display:none;
}

.filter-section {
    margin-bottom: 5px;
    padding-bottom:10px;
    border-bottom: 1px #e0e0e0 dashed;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option {
    padding: 6px 12px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-option.active {
    background-color: #6699ff;
    color: white;
    border-color: #6699ff;
}

/*.filter-option:hover {
    background-color: #e6f4ff;
    border-color: #6699ff;
}*/

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    padding: 5px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.product-tag {
/*    position: absolute;
    top: 8px;
    left: 10px;*/
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.product-image {
    height: 40px;
/*    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    display: flex;
    align-items: center;
/*    justify-content: center;*/
    color: #333;
    font-size: 16px;
    font-weight: bold;
    padding-left:10px;
    border-bottom:1px solid #666;
}

.product-content {
    padding: 15px;
}

.product-name {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
    line-height: 1.3;
}

.product-info {
    display:flex;
    justify-content:space-between;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.product-info div {
    width:50%;
    /*margin-bottom: 3px;*/
}

.product-price {
    color: #ff6b35;
    font-weight: bold;
    /*margin-bottom: 12px;*/
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-text {
    font-size: 14px;
    color: #999;
}

.add-to-cart-btn {
    width: 100px;
    padding: 10px;
    background: linear-gradient(135deg, #6699ff 0%, #3d7cc6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}

.warehouse-badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: #e6f4ff;
    color: #6699ff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    margin-left: 5px;
}

.load-more {
    text-align: center;
    padding: 20px;
    color: #666;
    background: white;
    margin-top: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more:hover {
    background: #f8f9fa;
}

.search-bar {
    padding: 10px;
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: #6699ff;
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* 购物车页面样式 */
.cart-item {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.warehouse-separator {
    height: 40px;
    background: linear-gradient(to right, #e6f4ff, #ffffff, #e6f4ff);
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6699ff;
    font-weight: 500;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.item-info {
    flex: 1;
    color:#ff6b35;
}

.item-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    font-size:18px;
}

.item-details {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    width:50%;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    justify-content:end;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

    .quantity-btn:hover {
        background: #6699ff;
        color: white;
        border-color: #6699ff;
    }

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 30px;
    font-size: 14px;
}

.item-total {
    text-align: right;
    font-weight: bold;
    color: #ff6b35;
    margin-top: 5px;
}

.total-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

    .total-row:last-child {
        margin-bottom: 0;
        font-size: 18px;
        font-weight: bold;
        color: #ff6b35;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
}

    .checkout-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-cart-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.continue-shopping {
    color: #6699ff;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
}

.delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 订单提交页面样式 */
.order-form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.customer-selector {
    /*display: none;*/
}

.order-details {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.warehouse-group {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
}

.warehouse-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #6699ff;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.item-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

    .item-row:last-child {
        border-bottom: none;
    }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #6699ff 0%, #3d7cc6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(22, 119, 255, 0.3);
    }

.summary-section {
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

    .summary-row.total {
        font-weight: bold;
        color: #ff6b35;
        font-size: 16px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }

/* 个人中心页面样式 */
.profile-card {
    background: linear-gradient(135deg, #6699ff 0%, #3d7cc6 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(22, 119, 255, 0.3);
    text-align: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin: 0 auto 15px;*/
    font-size: 24px;
}

.user-info {
    display:flex;
    align-items:center;
    justify-content:space-around;
    margin-bottom: 10px;
}

.user-info div {
    margin-bottom: 5px;
    font-size: 14px;
}

.user-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.action-buttons {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.action-btn {
    padding: 6px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

    .action-btn:hover {
        background: rgba(255,255,255,0.2);
    }

.orders-tab {
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    overflow-x: auto;
}

.tab-item {
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    font-size: 14px;
}

.tab-item.active {
    border-bottom: 2px solid #6699ff;
    color: #6699ff;
    font-weight: 500;
}

.order-list {
    margin-top: 15px;
}

.order-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.order-id {
    font-weight: bold;
    color: #333;
}

.order-status {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.status-pending {
    background-color: #fffbe6;
    color: #faad14;
}

.status-confirmed {
    background-color: #e6f4ff;
    color: #6699ff;
}

.status-picked {
    background-color: #f6ffed;
    color: #52c41a;
}

.status-delivered {
    background-color: #e6f7ff;
    color: #177ddc;
}

.status-cancelled {
    background-color: #f5f5f5;
    color: #8c8c8c;
}

.order-details {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.order-total {
    text-align: right;
    font-weight: bold;
    color: #ff6b35;
}

.quick-actions {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.quick-actions h3 {
    margin-bottom: 15px;
    color: #333;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-action {
    padding: 15px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-action:hover {
    border-color: #6699ff;
    background: #e6f4ff;
}

.quick-action i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.quick-action span {
    font-size: 14px;
    color: #333;
}

.empty-orders {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

/* 订单详情页面样式 */
.order-detail-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.detail-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.detail-id {
    color: #666;
    font-size: 14px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-weight: 500;
    min-width:60px;
}

.detail-value {
    color: #333;
}

/* 拜访任务页面样式 */
.visit-card {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s;
}

.visit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.visit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.visit-id {
    font-weight: bold;
    color: #333;
}

.visit-status {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.status-completed {
    background-color: #f6ffed;
    color: #52c41a;
}

.status-overdue {
    background-color: #fff2f0;
    color: #ff4d4f;
}

.visit-info {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.visit-info div {
    margin-bottom: 5px;
}

.visit-info strong {
    color: #333;
}

.visit-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.btn-primary {
    flex: 1;
    padding: 10px;
    background: linear-gradient(135deg, #6699ff 0%, #3d7cc6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}

.btn-secondary {
    flex: 1;
    padding: 10px;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e9ecef;
}

.empty-visits {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-visits-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.add-visit-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6699ff 0%, #3d7cc6 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(22, 119, 255, 0.3);
    z-index: 100;
}

.date-badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: #e6f4ff;
    color: #6699ff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    margin-left: 5px;
}

/* 拜访记录页面样式 */
.form-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.upload-section {
    margin-top: 5px;
}

.upload-area {
    border: 2px dashed #e1e5e9;
    border-radius: 8px;
    /*padding: 20px;*/
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: #6699ff;
    background: #f8f9fa;
}

.upload-icon {
    font-size: 32px;
    color: #999;
    margin-bottom: 5px;
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.remove-photo {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.info-label {
    font-weight: 500;
    color: #666;
    min-width:65px;
}

.info-value {
    color: #333;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #eee;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: #666;
    transition: all 0.3s;
    position: relative;
}

.nav-item.active {
    color: white;
    background-color: #6699ff;
}

.nav-item:hover {
    color: #6699ff;
}

.nav-icon {
    font-size: 24px;
    /*margin-bottom: 2px;*/
}

.nav-text {
    font-size: 14px;
    margin-top: -10px;
}

.badge {
    position: absolute;
    top: -5px;
    right: 30px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 重置密码容器 - 使用特定类名避免冲突 */
.password-reset-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.password-reset-logo {
    margin-bottom: 30px;
}

.password-reset-logo h1 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
}

.password-reset-logo p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

.password-reset-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.password-reset-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.password-reset-input-wrapper {
    position: relative;
}

.password-reset-input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.password-reset-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-reset-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}

.password-reset-strength-meter {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.password-reset-strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.password-reset-strength-weak {
    background: #ff4757;
    width: 33%;
}

.password-reset-strength-medium {
    background: #ffa502;
    width: 66%;
}

.password-reset-strength-strong {
    background: #2ed573;
    width: 100%;
}

.password-reset-hints {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    text-align: left;
}

.password-reset-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-reset-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 15px;
}

.password-reset-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.password-reset-btn-secondary {
    background: transparent;
    border: 2px solid #e1e5e9;
    color: #666;
}

.password-reset-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #d1d5da;
}

.password-reset-link {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.password-reset-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.password-reset-link a:hover {
    text-decoration: underline;
}

.password-reset-error {
    color: #ff4757;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.password-reset-success {
    color: #2ed573;
    font-size: 14px;
    margin-bottom: 15px;
    display: none;
}

@media (max-width: 480px) {
    .password-reset-container {
        padding: 30px 20px;
        margin: 10px;
    }

    .password-reset-logo h1 {
        font-size: 24px;
    }
}

.password-reset-strength {
    margin-top: 10px;
}

.password-reset-strength-text {
    font-size: 12px;
    margin-bottom: 5px;
    text-align: left;
}

.password-reset-strength-label {
    color: #999;
    font-size: 11px;
}

.password-reset-strength-label.weak {
    color: #ff4757;
}

.password-reset-strength-label.medium {
    color: #ffa502;
}

.password-reset-strength-label.strong {
    color: #2ed573;
}
