/* 
 * Bootstrap 5 淡蓝色电商主题样式
 * 积分网站手机端 - 电商风格重构
 */

:root {
    --primary-blue: #1eb9ee;
    --light-blue: #e6f7ff;
    --lighter-blue: #f0f9ff;
    --dark-blue: #0d8abc;
    --secondary-blue: #87ceeb;
    --accent-color: #f0555f;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --text-dark: #333353;
    --text-light: #666;
    --border-color: #d1ecf1;
    --shadow-light: rgba(30, 185, 238, 0.1);
    --shadow-medium: rgba(30, 185, 238, 0.2);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 8px 24px rgba(30, 185, 238, 0.15);
}

body {
    font-family: 'M PLUS 1p', sans-serif;
    color: var(--text-dark);
    background-color: var(--lighter-blue);
    padding-top: 56px; /* 为固定顶部导航留出空间 */
    padding-bottom: 60px; /* 为底部导航留出空间 */
}

.bg-light-blue {
    background-color: var(--lighter-blue) !important;
}

/* 顶部导航样式 */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: 0 2px 10px var(--shadow-medium);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
    font-size: 1.2rem;
}

.navbar-brand img {
    height: 30px;
    margin-right: 8px;
}

.user-point-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-point-badge .point-value {
    color: #ffeb3b;
    font-weight: 800;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* 电商卡片样式 */
.card-custom {
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: white;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.card-header-custom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    border-bottom: none;
    padding: 1rem 1.25rem;
    font-weight: 700;
    position: relative;
}

.card-header-custom h5 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.card-header-custom h5 i {
    margin-right: 0.5rem;
}

.card-header-custom .badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

/* 按钮样式 */
.btn-primary-custom {
    background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(to right, var(--dark-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.btn-accent {
    background-color: var(--accent-color);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
}

.btn-accent:hover {
    background-color: #e04a54;
    color: white;
}

/* 底部导航 - 现代化设计 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(30, 185, 238, 0.1);
}

.nav-item-custom {
    text-align: center;
    padding: 0.25rem;
    position: relative;
}

.nav-link-custom {
    color: var(--text-light);
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link-custom:hover {
    background-color: rgba(30, 185, 238, 0.05);
    transform: translateY(-2px);
}

.nav-link-custom.active {
    color: var(--primary-blue);
    background-color: rgba(30, 185, 238, 0.08);
    font-weight: 600;
}

.nav-link-custom.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
    border-radius: 0 0 3px 3px;
}

.nav-link-custom i {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-custom.active i {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(30, 185, 238, 0.3));
}

/* 下拉菜单样式优化 */
.bottom-nav .dropdown-menu {
    border-radius: 16px;
    border: 1px solid rgba(30, 185, 238, 0.15);
    margin-bottom: 15px;
    transform: translateY(10px) !important;
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bottom-nav .dropdown-item {
    border-radius: 8px;
    margin: 0.25rem;
    transition: all 0.2s ease;
}

.bottom-nav .dropdown-item:hover {
    background-color: rgba(30, 185, 238, 0.1);
    transform: translateX(3px);
}

.bottom-nav .dropdown-item i {
    color: var(--primary-blue);
}

/* 返回顶部按钮样式优化 */
#page-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    transition: all 0.3s ease;
}

#page-top .btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border: none;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 185, 238, 0.3);
    transition: all 0.3s ease;
}

#page-top .btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 185, 238, 0.4);
}

#page-top .btn-primary-custom i {
    font-size: 1.5rem;
}

/* 响应式调整 */
@media (max-width: 576px) {
    .bottom-nav {
        padding: 0.4rem 0;
    }
    
    .nav-link-custom {
        padding: 0.4rem 0.2rem;
        font-size: 0.65rem;
    }
    
    .nav-link-custom i {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    #page-top {
        bottom: 70px;
        right: 15px;
    }
    
    #page-top .btn-primary-custom {
        width: 50px;
        height: 50px;
    }
}

/* 电商横幅和促销样式 */
.banner-promo {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    position: relative;
    box-shadow: var(--card-shadow);
}

.banner-promo img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.banner-promo:hover img {
    transform: scale(1.03);
}

.banner-promo .promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.banner-promo .promo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    font-weight: 600;
}

/* 电商服务列表项 */
.service-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-left: 5px solid var(--primary-blue);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: var(--hover-shadow);
}

.service-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-item-content {
    flex: 1;
}

.service-item h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-point {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.3rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    display: flex;
    align-items: center;
}

.service-point i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* 电商快速菜单 */
.quick-menu {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
}

.quick-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-blue);
}

.quick-menu-header h5 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.quick-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.quick-menu-item {
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quick-menu-item:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.quick-menu-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(30, 185, 238, 0.3);
}

.quick-menu-label {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

/* 响应式调整 */
@media (max-width: 576px) {
    body {
        padding-top: 52px;
        padding-bottom: 56px;
    }
    
    .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .card-custom {
        border-radius: 10px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* 加载动画 */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--light-blue);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 电商专用工具类 */
.text-point {
    color: var(--accent-color);
    font-weight: 800;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.border-blue {
    border-color: var(--primary-blue) !important;
}

.shadow-blue {
    box-shadow: 0 4px 12px var(--shadow-medium) !important;
}

/* 电商产品卡片 */
.product-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.product-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(30, 185, 238, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-rating {
    color: #ffc107;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* 电商筛选器 */
.filter-section {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--card-shadow);
}

.filter-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-blue);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip {
    background: var(--light-blue);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.375rem 0.875rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-chip:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.filter-chip.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* 电商分页 */
.pagination-custom .page-link {
    color: var(--primary-blue);
    border: 1px solid var(--border-color);
    margin: 0 0.25rem;
    border-radius: 8px;
}

.pagination-custom .page-item.active .page-link {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.pagination-custom .page-link:hover {
    background: var(--light-blue);
    border-color: var(--primary-blue);
}

/* ==================== */
/* マイページ専用スタイル */
/* ==================== */

/* ページヘッダー */
.page-header .icon-wrapper {
    width: 70px;
    height: 70px;
}

/* ポイント表示 */
.point-display {
    transition: all 0.3s ease;
}

.point-display:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

/* 統計カード */
.stat-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

/* マイページメニュー */
.hover-blue:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue) !important;
}

.hover-blue:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%) !important;
}

.hover-blue:hover .icon-wrapper i {
    color: white !important;
}

/* ポイントアイテム */
.point-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.point-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* モーダルスタイル */
.modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.modal-header.bg-gradient-blue {
    border-bottom: none;
}

/* レスポンシブ調整 */
@media (max-width: 576px) {
    .page-header .icon-wrapper {
        width: 60px;
        height: 60px;
        padding: 1rem !important;
    }
    
    .page-header .icon-wrapper i {
        font-size: 1.5rem !important;
    }
    
    .point-display h2 {
        font-size: 2.5rem !important;
    }
    
    .stat-card {
        padding: 1rem !important;
    }
    
    .stat-card h3 {
        font-size: 1.5rem !important;
    }
}

/* アニメーション */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* バッジスタイル */
.bg-accent {
    background-color: var(--accent-color) !important;
    color: white;
}

/* アイコンラッパー */
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ボーダー調整 */
.border-blue {
    border-color: var(--primary-blue) !important;
}

/* テキストカラー */
.text-point {
    color: var(--accent-color);
    font-weight: 800;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* カードホバー効果 */
.card-custom .card-body a:hover {
    text-decoration: none;
}

/* アラートカスタマイズ */
.alert-info {
    background-color: var(--light-blue);
    border-color: var(--primary-blue);
    color: var(--dark-blue);
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-warning .alert-link {
    color: #533f03;
}

/* ボタンカスタマイズ */
.btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* グリッドアイテム */
.row.g-0 > [class*="col-"] {
    padding: 0;
}

.row.g-0 > [class*="col-"] a {
    display: block;
    height: 100%;
}

/* ==================== */
/* 認証ページ専用スタイル */
/* ==================== */

/* 認証カード共通スタイル */
.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 185, 238, 0.15);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e6f7ff;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-card-header h2 {
    color: #1eb9ee;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.auth-card-header p {
    color: #666;
    font-size: 0.95rem;
}

/* 認証フォーム共通スタイル */
.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-control {
    border: 2px solid #e6f7ff;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fdff;
}

.auth-form .form-control:focus {
    border-color: #1eb9ee;
    box-shadow: 0 0 0 0.25rem rgba(30, 185, 238, 0.25);
    background-color: white;
}

.auth-form .form-control::placeholder {
    color: #a0c4d3;
}

/* 認証ボタン共通スタイル */
.auth-btn-primary {
    background: linear-gradient(135deg, #1eb9ee 0%, #0d8abc 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 185, 238, 0.3);
}

.auth-btn-secondary {
    background: white;
    border: 2px solid #1eb9ee;
    border-radius: 12px;
    color: #1eb9ee;
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.auth-btn-secondary:hover {
    background: #1eb9ee;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 185, 238, 0.2);
    text-decoration: none;
}

/* 認証エラーメッセージ */
.auth-error-message {
    background-color: #ffeaea;
    border: 1px solid #ffcccc;
    border-radius: 8px;
    color: #d32f2f;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* 認証リンク */
.auth-link {
    color: #1eb9ee;
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    color: #0d8abc;
    text-decoration: underline;
}

/* 認証情報ボックス */
.auth-info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #1eb9ee;
}

.auth-info-box h4 {
    color: #1eb9ee;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.auth-info-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 認証完了アイコン */
.auth-completion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1eb9ee 0%, #0d8abc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(30, 185, 238, 0.3);
}

/* パスワード強度メーター */
.password-strength-meter {
    height: 8px;
    background-color: #e6f7ff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.password-strength-fill.empty { width: 0%; background-color: #e0e0e0; }
.password-strength-fill.very-weak { width: 20%; background-color: #ff5252; }
.password-strength-fill.weak { width: 40%; background-color: #ff9800; }
.password-strength-fill.average { width: 60%; background-color: #ffeb3b; }
.password-strength-fill.strong { width: 80%; background-color: #4caf50; }
.password-strength-fill.very-strong { width: 100%; background-color: #2e7d32; }

.password-strength-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: right;
}

.password-strength-text.empty { color: #999; }
.password-strength-text.very-weak { color: #ff5252; }
.password-strength-text.weak { color: #ff9800; }
.password-strength-text.average { color: #ff9800; }
.password-strength-text.strong { color: #4caf50; }
.password-strength-text.very-strong { color: #2e7d32; }

/* 認証ページレスポンシブ調整 */
@media (max-width: 576px) {
    .auth-card {
        padding: 1.75rem;
    }
    
    .auth-card-header h2 {
        font-size: 1.5rem;
    }
    
    .auth-completion-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .auth-btn-primary,
    .auth-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* 認証ページコンテナ */
.auth-container {
    max-width: 520px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* 認証ページの追加アクション */
.auth-additional-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e6f7ff;
    text-align: center;
}

.auth-additional-actions p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.auth-action-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.auth-action-link {
    color: #1eb9ee;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.auth-action-link:hover {
    color: #0d8abc;
    text-decoration: underline;
}

.auth-action-link i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}
