@charset "utf-8";

/**
 * Member Style Sheet - OpenInterest Theme (Clean Version)
 * 회원 스타일 시트 - OpenInterest 테마 (정리된 버전)
 * 
 * 중복 제거 및 구조화된 스타일시트
 * Last cleaned: 2025-05-30
 */

/* =============================================
   CSS Variables & Base Styles
   ============================================= */
:root {
    /* Colors */
    --primary-green: #00a862;
    --primary-green-light: #36FFA1;
    --primary-green-hover: #0AD681;
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-gray: #B0B0B0;
    --text-light-gray: #D0D0D0;
    --text-white: #FFFFFF;
    --text-heading: #334155;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --bg-dark: #121212;
    --bg-card-dark: #1E1E1E;
    --bg-input-dark: #2A2A2A;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-hover: #cbd5e1;
    
    /* Overlays */
    --overlay-dark-20: rgba(0, 0, 0, 0.2);
    --overlay-white-10: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    
    /* Success/Error Colors */
    --success: #10b981;
    --success-light: rgba(11, 246, 148, 0.2);
    --success-medium: rgba(11, 246, 148, 0.3);
    --error: #ef4444;
    --danger: #ef4444;
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    
    /* Typography */
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 32px;
    
    /* Transitions */
    --transition-normal: 0.3s;
    --easing-default: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   Import Components
   ============================================= */
@import url(./components/modal.css);
@import url(./components/forms.css);
@import url(./components/buttons.css);
@import url(./components/tooltips.css);
@import url(./responsive.css);

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

/* =============================================
   Common Components
   ============================================= */

/* Overlays */
.oi-login-overlay,
.oi-register-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%,
        rgba(248, 249, 250, 0.75) 50%,
        rgba(241, 243, 245, 0.65) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Logo Wrapper */
.oi-logo-wrapper {
    margin-bottom: 24px;
    text-align: center;
}

.oi-logo-wrapper img,
.oi-register-logo {
    width: 80%;
    max-width: 200px;
    height: auto;
}

/* Input Group Base */
.oi-input-group {
    position: relative;
    width: 100%;
}

/* Input Field Base */
.oi-input {
    width: 100%;
    padding: clamp(14px, 2vw, 16px) 16px clamp(14px, 2vw, 16px) 48px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #1e293b;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.oi-input::placeholder {
    color: #94a3b8;
}

.oi-input:focus {
    background: #ffffff;
    border-color: #00a862;
    box-shadow: 0 0 0 4px rgba(11, 246, 148, 0.15);
    transform: translateY(-1px);
}

.oi-input:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Input Icons */
.oi-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    z-index: 2;
}

/* Button Base */
.oi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
    border-radius: 12px;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    border: none;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.oi-btn i {
    font-size: 16px;
    color: inherit;
}

/* Primary Button */
.oi-btn-primary {
    background: linear-gradient(135deg, #00a862 0%, #0AD681 100%);
    color: #0a0e1a;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: clamp(14px, 2.5vw, 18px) clamp(32px, 5vw, 48px);
    box-shadow: 0 4px 15px rgba(11, 246, 148, 0.3);
}

.oi-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.oi-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(11, 246, 148, 0.4);
    background: linear-gradient(135deg, #0AD681 0%, #09C576 100%);
}

.oi-btn-primary:hover::before {
    left: 100%;
}

.oi-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 246, 148, 0.3);
}

.oi-btn-primary span {
    position: relative;
    z-index: 1;
}

.oi-btn-primary i {
    transition: transform 0.3s ease;
}

.oi-btn-primary:hover i {
    transform: translateX(4px);
}

/* Disabled Primary Button */
.oi-btn-primary.disabled,
.oi-btn-primary:disabled {
    background: #94a3b8;
    color: #e2e8f0;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.oi-btn-primary.disabled:hover,
.oi-btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Secondary Button */
.oi-btn-secondary {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    padding: clamp(14px, 2.5vw, 18px) clamp(28px, 4vw, 40px);
}

.oi-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.oi-btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Ghost Button */
.oi-btn-ghost {
    background: transparent;
    color: var(--text-light-gray);
    font-size: var(--text-base);
    font-weight: 600;
    border: 1px solid var(--text-heading);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-5);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.oi-btn-ghost:hover {
    background: var(--overlay-white-10);
    color: var(--text-white);
    border-color: var(--primary-green);
}

/* Outline Button */
.oi-btn-outline {
    background: #ffffff;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.oi-btn-outline:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.oi-btn-outline i {
    font-size: 16px;
}

/* Toggle Switch Base */
.oi-toggle-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    margin-bottom: 16px;
}

.oi-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.oi-toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.oi-toggle-track {
    position: relative;
    width: 50px;
    min-width: 50px;
    height: 26px;
    min-height: 26px;
    background-color: #e2e8f0;
    border-radius: 13px;
    flex-shrink: 0;
    margin-right: 12px;
    transition: background-color 0.3s ease;
}

.oi-toggle-track::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.oi-toggle-input:checked + .oi-toggle-label .oi-toggle-track {
    background-color: #00a862;
}

.oi-toggle-input:checked + .oi-toggle-label .oi-toggle-track::before {
    transform: translateX(24px);
}

.oi-toggle-text {
    color: #334155;
    font-size: 15px;
    font-weight: 500;
}

.oi-toggle-label:hover .oi-toggle-track {
    background-color: #cbd5e1;
}

.oi-toggle-input:checked + .oi-toggle-label:hover .oi-toggle-track {
    background-color: #0AD681;
}

/* Primary Toggle Switch */
.oi-toggle-switch-primary {
    background: #f0fdf8;
    border: 2px solid #00a862;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.oi-toggle-switch-primary .oi-toggle-track {
    width: 56px;
    min-width: 56px;
    height: 30px;
    min-height: 30px;
    border-radius: 15px;
}

.oi-toggle-switch-primary .oi-toggle-track::before {
    width: 24px;
    height: 24px;
}

.oi-toggle-switch-primary .oi-toggle-input:checked + .oi-toggle-label .oi-toggle-track::before {
    transform: translateX(26px);
}

.oi-toggle-switch-primary .oi-toggle-text {
    font-size: 16px;
    font-weight: 600;
    color: #00a862;
}

/* =============================================
   Login Page Styles
   ============================================= */

/* Login Wrapper */
.oi-member-login,
#mb_login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f7fa;
    margin: 0;
    max-width: 100%;
}

/* Login Container */
.oi-login-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    padding: clamp(30px, 5vw, 50px);
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 100px rgba(11, 246, 148, 0.05);
}

/* Login Header */
.oi-login-header,
.login-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Login Title */
.oi-login-title,
.login-header h1 {
    font-size: clamp(28px, 5vw, 36px);
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Login Subtitle */
.oi-login-subtitle,
.login-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    color: #64748b;
    font-weight: 500;
}

/* Login Form */
.oi-login-form-wrap,
.login-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Login Button */
.oi-btn-login,
.login-btn {
    width: 100%;
    padding: clamp(14px, 2.5vw, 18px);
    background: linear-gradient(135deg, #00a862 0%, #0AD681 100%);
    border: none;
    border-radius: 12px;
    color: #0a0e1a;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.oi-btn-login::before,
.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.oi-btn-login:hover,
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 246, 148, 0.3);
}

.oi-btn-login:hover::before,
.login-btn:hover::before {
    left: 100%;
}

.oi-btn-login:active,
.login-btn:active {
    transform: translateY(0);
}

/* Login Options */
.oi-login-options,
#login_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

/* Auto Login Toggle */
.oi-auto-login,
.login_if_auto {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login Actions */
.oi-login-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

/* Login Link */
.oi-login-link,
.login_if_lpl a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.oi-login-link:hover,
.login_if_lpl a:hover {
    color: #00a862;
}

.oi-login-link i {
    font-size: 14px;
}

/* Social Login Divider */
.oi-social-divider,
.login-divider {
    position: relative;
    text-align: center;
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    color: var(--text-gray);
}

.oi-social-divider::before,
.oi-social-divider::after,
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.oi-social-divider span,
.login-divider span {
    position: relative;
    background: #f5f7fa;
    padding: 0 20px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Social Login */
.oi-social-login,
.social-login {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.oi-social-login .sns-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.oi-social-login .sns-wrap a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.oi-social-login .sns-wrap a:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.oi-social-login .sns-wrap a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* mbskin for login */
.mbskin {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    color: #1e293b;
    position: relative;
    z-index: 2;
    max-width: 440px;
    width: 100%;
    margin: 0 20px;
    animation: fadeInUp 0.6s ease-out;
}

.mbskin_box {
    width: 100%;
}

/* Login Input Group Icons */
.login-input-group {
    position: relative;
    margin-bottom: var(--space-4);
}

.login-input-group input {
    width: 100%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #1e293b;
    padding: 16px 16px 16px 45px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.login-input-group input:focus {
    border: 2px solid #00a862;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 246, 148, 0.15);
    outline: none;
    transform: translateY(-1px);
}

.login-input-group input::placeholder {
    color: var(--text-gray);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.login-input-group input:focus::placeholder {
    opacity: 0.4;
    transform: translateX(5px);
}

/* Login Input Icons */
.login-input-group::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 2;
}

.login-input-group.user-input::before,
.oi-input-group.user-input::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23B0B0B0' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.login-input-group.password-input::before,
.oi-input-group.password-input::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23B0B0B0' viewBox='0 0 24 24'%3E%3Cpath d='M18,8h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V10C20,8.9,19.1,8,18,8z M12,17c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,17,12,17z M15.1,8H8.9V6c0-1.71,1.39-3.1,3.1-3.1c1.71,0,3.1,1.39,3.1,3.1V8z'/%3E%3C/svg%3E");
}

.login-input-group.user-input:focus-within::before,
.oi-input-group.user-input:focus-within::before {
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230BF694' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.login-input-group.password-input:focus-within::before,
.oi-input-group.password-input:focus-within::before {
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230BF694' viewBox='0 0 24 24'%3E%3Cpath d='M18,8h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V10C20,8.9,19.1,8,18,8z M12,17c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,17,12,17z M15.1,8H8.9V6c0-1.71,1.39-3.1,3.1-3.1c1.71,0,3.1,1.39,3.1,3.1V8z'/%3E%3C/svg%3E");
}

/* Login Register Link */
.login-register-link {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 25px;
}

.login-register-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-register-link a:hover {
    color: var(--primary-green-light);
    text-decoration: underline;
}

/* Shop Order Section */
.shop-order-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--text-heading);
}

.shop-order-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.guest-privacy-wrap {
    background: var(--bg-input-dark);
    border: 1px solid var(--text-heading);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    max-height: 150px;
    overflow-y: auto;
    color: var(--text-light-gray);
    font-size: 14px;
}

.guest-agree-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.agree-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--text-heading);
    background-color: var(--bg-input-dark);
    margin-right: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.agree-checkbox:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.agree-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.guest-agree-box label {
    font-size: 14px;
    color: var(--text-light-gray);
    cursor: pointer;
}

.guest-submit {
    width: 100%;
    background: var(--bg-input-dark);
    color: var(--text-white);
    border: 1px solid var(--text-heading);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.guest-submit:hover {
    background-color: var(--text-heading);
}

/* Shop Order Inquiry */
.shop-order-inquiry {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--text-heading);
}

.shop-order-inquiry h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.order-inquiry-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-btn {
    width: 100%;
    background: var(--bg-input-dark);
    color: var(--text-white);
    border: 1px solid var(--text-heading);
    border-radius: 12px;
    padding: 12px;
    margin-top: 5px;
    transition: all 0.2s ease;
}

.inquiry-btn:hover {
    background-color: var(--text-heading);
}

#mb_login_odinfo {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light-gray);
}

#mb_login_odinfo p {
    line-height: 1.5;
}

#mb_login_odinfo strong {
    color: var(--primary-green);
}

/* =============================================
   Register Page Styles
   ============================================= */

/* Register Wrapper */
.oi-register-wrapper,
.register-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f7fa;
    padding: 40px 20px;
}

/* Register Container */
.oi-register-container,
.register {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 100px rgba(11, 246, 148, 0.05);
}

/* Dark theme register styles */
.register-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(219, 0, 161, 0.4) 100%);
    z-index: 1;
}

.register {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(11, 246, 148, 0.2);
    color: var(--text-white);
}

/* Register Header */
.oi-register-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Register Title & Subtitle */
.oi-register-title {
    font-size: clamp(24px, 5vw, 36px);
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.register .oi-register-title {
    color: var(--text-white);
}

.oi-register-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.oi-register-subtitle i {
    color: var(--primary-green);
}

/* Progress Indicator */
.oi-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.oi-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.oi-step.active {
    color: #00a862;
}

.oi-icon-sm {
    font-size: 16px;
    color: #64748b;
    display: inline-block;
}

.oi-step.active .oi-icon-sm {
    color: #00a862;
}

/* Register Section */
.oi-register-section {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.register .oi-register-section {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(11, 246, 148, 0.2);
}

.oi-register-section h2,
.oi-section-title {
    font-size: clamp(18px, 3vw, 22px);
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.register .oi-register-section h2 {
    color: var(--text-white);
}

.oi-section-title {
    border-bottom: 2px solid #00a862;
    padding-bottom: 10px;
}

.oi-section-title i {
    font-size: 20px;
    color: #00a862;
}

/* Terms Container */
.oi-terms-container {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0px;
    min-height: 150px;
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Terms Content */
.oi-terms-content {
    width: 100%;
    height: 200px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 6px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    resize: none;
    overflow-y: auto;
}

.oi-register-terms {
    width: 100%;
    height: 200px;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(11, 246, 148, 0.2);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    padding: var(--space-4);
    resize: none;
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-3);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) var(--bg-input-dark);
}

/* Scrollbar styling */
.oi-terms-content::-webkit-scrollbar,
.oi-terms-container::-webkit-scrollbar,
.oi-register-terms::-webkit-scrollbar {
    width: 8px;
}

.oi-terms-content::-webkit-scrollbar-track,
.oi-terms-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.oi-register-terms::-webkit-scrollbar-track {
    background: var(--bg-input-dark);
    border-radius: 4px;
}

.oi-terms-content::-webkit-scrollbar-thumb,
.oi-terms-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.oi-register-terms::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

.oi-terms-content::-webkit-scrollbar-thumb:hover,
.oi-terms-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.oi-register-terms::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-light);
}

/* Table Styles */
.oi-table-wrap,
.oi-register-table-wrap {
    overflow-x: auto;
    margin-bottom: 20px;
}

.oi-register-table-wrap {
    background: var(--bg-input-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
}

.oi-table,
.oi-privacy-table,
.oi-register-table {
    width: 100%;
    background: #ffffff;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.oi-register-table {
    font-size: var(--text-sm);
}

.oi-table caption,
.oi-privacy-table caption {
    position: absolute;
    left: -9999px;
}

.oi-table thead,
.oi-privacy-table thead {
    background: #f8fafc;
}

.oi-table th,
.oi-table td,
.oi-privacy-table th,
.oi-privacy-table td,
.oi-register-table th,
.oi-register-table td {
    padding: 14px 16px;
    text-align: left;
}

.oi-table th,
.oi-privacy-table th {
    font-weight: 600;
    color: #334155;
    font-size: 14px;
    border-bottom: 2px solid #e2e8f0;
}

.oi-register-table th {
    background: var(--overlay-dark-20);
    color: var(--primary-green);
    font-weight: 500;
    border: 1px solid var(--text-heading);
}

.oi-table td,
.oi-privacy-table td {
    color: #475569;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.oi-register-table td {
    border: 1px solid var(--text-heading);
}

.oi-table tbody tr:last-child td,
.oi-privacy-table tbody tr:last-child td {
    border-bottom: none;
}

.oi-table tbody tr:hover,
.oi-privacy-table tbody tr:hover {
    background: #f8fafc;
}

/* Agree Wrapper */
.oi-agree-wrap {
    margin-top: 24px;
    padding: 0 4px;
}

.oi-register-agree {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: var(--space-3);
}

/* Checkbox */
.oi-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--text-heading);
    background-color: var(--bg-input-dark);
    margin-right: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.oi-checkbox:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.oi-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.oi-register-agree label,
.oi-register-chkall label {
    font-size: var(--text-sm);
    color: var(--text-light-gray);
    cursor: pointer;
}

/* Check All */
.oi-chkall-wrap {
    margin: 36px 0 24px;
    background: linear-gradient(135deg, #e8fdf5 0%, #d6fbe9 100%);
    border: 1px solid #00a862;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.oi-register-chkall {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-5) 0;
    padding: var(--space-3) 0;
    border-top: 1px solid var(--text-heading);
    border-bottom: 1px solid var(--text-heading);
}

.register .oi-register-chkall {
    margin-top: var(--space-6);
    padding: var(--space-4);
    background: rgba(11, 246, 148, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 246, 148, 0.3);
}

.oi-register-chkall label {
    font-weight: 600;
    color: var(--text-white);
}

.register .oi-register-chkall label {
    color: var(--primary-green);
}

.oi-checkbox-label-primary {
    font-weight: 600;
    font-size: 18px;
    color: #00a86b;
    justify-content: center;
}

.oi-checkbox-label-primary i {
    margin-right: 8px;
    color: var(--primary-green);
}

/* Button Group */
.oi-button-group,
.oi-register-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

.register .oi-register-buttons {
    margin-top: var(--space-5);
}

/* Check All Button */
.oi-check-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.oi-check-all:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #334155;
}

/* =============================================
   Register Form Page Styles
   ============================================= */

/* Register Form Wrapper */
.oi-register-form-wrapper {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f7fa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Register Form Container */
.oi-register-form-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

/* Form Section */
.oi-form-section {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.oi-form-section h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oi-form-section:last-child {
    margin-bottom: 0;
}

/* Form Group */
.oi-form-group {
    margin-bottom: 24px;
}

.oi-form-label {
    display: block;
    color: #334155;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.oi-form-label .required,
.oi-required {
    color: #447aef;
}

.oi-form-input {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #1e293b;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.oi-form-input:focus {
    background: #ffffff;
    border-color: #00a862;
    box-shadow: 0 0 0 4px rgba(11, 246, 148, 0.15);
}

.oi-form-input::placeholder {
    color: #94a3b8;
}

/* Form Error/Success */
.oi-form-error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.oi-form-group.error .oi-form-input {
    border-color: #ef4444;
}

.oi-form-group.error .oi-form-error {
    display: block;
}

.oi-form-success {
    color: #00a862;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.oi-form-group.success .oi-form-input {
    border-color: #00a862;
}

.oi-form-group.success .oi-form-success {
    display: block;
}

/* Input Message & Hint */
.oi-input-message {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    min-height: 20px;
}

.oi-input-message.success {
    color: #00a86b;
}

.oi-input-message.error {
    color: #ff4444;
}

.oi-input-hint {
    font-size: 14px;
    color: #666666;
    margin-top: 8px;
    line-height: 1.5;
}

/* Password Strength */
.oi-password-strength {
    margin-top: 8px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.oi-password-strength::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-green);
    transition: width 0.3s ease;
    width: 0;
}

.oi-password-strength.weak::after {
    background: #ff4444;
    width: 25%;
}

.oi-password-strength.medium::after {
    background: #ff8800;
    width: 50%;
}

.oi-password-strength.strong::after {
    background: #00c851;
    width: 75%;
}

.oi-password-strength.very-strong::after {
    background: var(--primary-green);
    width: 100%;
}

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

.oi-password-strength-bar.weak {
    width: 33%;
    background: #ef4444;
}

.oi-password-strength-bar.medium {
    width: 66%;
    background: #f59e0b;
}

.oi-password-strength-bar.strong {
    width: 100%;
    background: #00a862;
}

.oi-password-strength-text {
    margin-top: 6px;
    font-size: 13px;
    color: #64748b;
}

/* Textarea */
.oi-textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    color: #333333;
    font-size: 16px;
    resize: vertical;
    transition: all 0.3s ease;
}

.oi-textarea:focus {
    outline: none;
    border-color: #00a862;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 246, 148, 0.1);
}

/* Address Group */
.oi-address-group {
    /* Styles for address group */
}

.oi-address-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.oi-zip-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.oi-zip-input {
    max-width: 150px;
}

/* File Upload */
.oi-file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.oi-file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.oi-file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f8f9fa;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.oi-file-label:hover {
    background: #e8fdf5;
    border-color: #00a862;
    color: #00a86b;
}

.oi-file-preview {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.oi-file-preview img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
}

/* Certification */
.oi-cert-desc {
    font-size: 14px;
    color: #666666;
    font-weight: normal;
    margin-left: 10px;
}

.oi-cert-complete {
    background: #e8fdf5;
    border: 1px solid #00a862;
    border-radius: 12px;
    padding: 15px;
    color: #00a86b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oi-cert-complete i {
    font-size: 20px;
}

/* Certification Buttons */
.oi-cert-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

/* Info Text */
.oi-info-text {
    color: #555555;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.oi-info-text i {
    color: #1976d2;
}

/* Form Info Box */
.oi-form-info {
    background: #e7f8f2;
    border: 1px solid #00a862;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: start;
    gap: 12px;
}

.oi-form-info i {
    color: #00a862;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.oi-form-info p {
    color: #1e293b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* =============================================
   Register Result Page Styles
   ============================================= */

/* Register Result Wrapper */
.oi-register-result-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f7fa;
}

/* Register Result Container */
.oi-register-result-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 100px rgba(11, 246, 148, 0.05);
    text-align: center;
}

/* Success Wrapper */
.oi-success-wrapper {
    margin-bottom: 40px;
}

/* Success Icon Container */
.oi-success-icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00a862 0%, #0AD681 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.oi-success-icon-container::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(11, 246, 148, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.oi-success-icon-container i {
    font-size: 50px;
    color: #0a0e1a;
    position: relative;
    z-index: 1;
}

/* Success Title & Message */
.oi-success-title {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.oi-success-message {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
}

.oi-success-message strong {
    color: #00a862;
}

/* Info Card */
.oi-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    text-align: left;
}

.oi-info-card h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oi-info-card h3 i {
    color: #00a862;
    font-size: 22px;
}

.oi-info-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Data List */
.oi-data-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.oi-data-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.oi-data-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    min-width: 100px;
}

.oi-data-label i {
    font-size: 16px;
}

.oi-data-value {
    color: #1e293b;
    font-weight: 500;
}

/* Next Steps */
.oi-next-steps {
    margin-top: 40px;
}

.oi-next-steps h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.oi-next-steps h3 i {
    color: #00a862;
}

/* Steps List */
.oi-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.oi-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.oi-step-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.oi-step-number {
    width: 32px;
    height: 32px;
    background: rgba(11, 246, 148, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a862;
    font-weight: 600;
    font-size: 14px;
}

.oi-step-text {
    color: #334155;
    font-size: 15px;
}

/* =============================================
   Password Lost/Reset Page Styles
   ============================================= */

/* Password Lost Wrapper */
.oi-password-lost,
.oi-password-reset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f7fa;
}

/* =============================================
   Captcha Styles
   ============================================= */
#captcha {
    margin: 20px 0;
}

#captcha img {
    border-radius: 8px;
    margin-bottom: 10px;
}

#captcha input {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #1e293b;
    font-size: 16px;
    transition: all 0.3s ease;
}

#captcha input:focus {
    background: #ffffff;
    border-color: #00a862;
    box-shadow: 0 0 0 4px rgba(11, 246, 148, 0.15);
}

/* =============================================
   Utility Classes
   ============================================= */

/* Sound Only (Screen Reader) */
.sound_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Required */
.required {
    color: #003da0;
}

/* Success/Error States */
.success {
    color: #00a862;
}

.error {
    color: #ef4444;
}

/* Margin Top */
.mt-3 {
    margin-top: 16px;
}

/* =============================================
   Find ID/Password Styles
   ============================================= */
#find_info {
    background: var(--bg-card-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    max-width: 500px;
    margin: 50px auto;
    box-shadow: 0 4px 30px var(--shadow-medium);
    border: 1px solid var(--success-light);
}

#find_info h3 {
    font-size: var(--text-xl);
    color: var(--text-white);
    margin-bottom: var(--space-3);
}

#info_fs {
    margin-bottom: var(--space-4);
}

#info_fs p {
    color: var(--text-light-gray);
    margin-bottom: var(--space-3);
    line-height: 1.5;
}

.frm_input.full_input {
    width: 100%;
    background: var(--bg-input-dark);
    border: 1px solid var(--text-heading);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-3);
}

.frm_input.full_input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px var(--success-light);
    outline: none;
}

.win_btn {
    margin-top: var(--space-4);
}

.win_btn .btn_submit {
    width: 100%;
    background: var(--gradient-green);
    color: var(--bg-dark);
    font-size: var(--text-base);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.win_btn .btn_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--success-medium);
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Apply animations */
.register,
.mbskin {
    animation: fadeInUp 0.6s ease-out;
}

.oi-success-icon-container i {
    animation: scaleIn 0.5s ease-out;
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 768px) {
    #mb_login {
        margin: 40px 15px;
    }
    
    .mbskin {
        padding: 30px 20px;
    }
    
    /* 모바일에서 register 관련 padding 제거 */
    .oi-register-container,
    .register {
        padding: 0;
    }
    
    .login-header h1 {
        font-size: 24px;
    }
    
    .login-input-group input, 
    .login-btn {
        padding: 12px;
    }
    
    #login_info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .oi-register-container,
    .oi-register-form-container,
    .oi-register-result-container {
        max-width: 100%;
        margin: 10px;
        border-radius: 20px;
    }
    
    /* 로고 크기 조정 */
    .oi-register-header .oi-register-logo {
        width: 120px;
    }
    
    /* 테이블 반응형 */
    .oi-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .oi-table {
        min-width: 500px;
    }
    
    /* 버튼 그룹 */
    .oi-button-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .oi-btn {
        width: 100%;
    }
    
    /* 체크박스 크기 조정 */
    .oi-checkbox-indicator {
        width: 20px;
        height: 20px;
    }
    
    /* 주소 입력 그룹 */
    .oi-zip-group {
        flex-direction: column;
    }
    
    .oi-zip-input {
        max-width: 100%;
    }
    
    /* 데이터 아이템 */
    .oi-data-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }
    
    /* 스텝 카드 */
    .oi-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .oi-login-title {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .oi-login-subtitle {
        font-size: clamp(14px, 3vw, 16px);
    }
    
    .oi-input {
        font-size: clamp(14px, 3vw, 16px);
        padding: clamp(12px, 2.5vw, 14px) 16px clamp(12px, 2.5vw, 14px) 44px;
    }
    
    .oi-btn-login {
        font-size: clamp(14px, 3vw, 16px);
        padding: clamp(12px, 3vw, 16px);
    }
}

@media (max-width: 480px) {
    .social-login {
        flex-wrap: wrap;
    }
    
    /* 컨테이너 패딩 축소 */
    .oi-register-container,
    .oi-register-form-container,
    .oi-register-result-container {
        border-radius: 16px;
        padding: 20px 15px !important;
    }
    
    /* register 페이지 전체 패딩 제거 */
    .register {
        padding: 0 !important;
    }
    
    /* 로고 크기 추가 축소 */
    .oi-register-header .oi-register-logo {
        width: 100px;
    }
    
    /* 섹션 간격 조정 */
    .oi-register-section,
    .oi-form-section {
        margin-bottom: 30px;
    }
    
    /* 테이블 폰트 크기 */
    .oi-table {
        font-size: 12px;
    }
    
    .oi-table th,
    .oi-table td {
        padding: 8px;
    }
    
    /* 약관 컨테이너 높이 조정 */
    .oi-terms-container {
        max-height: 200px;
        padding: 15px;
    }
    
    /* 전체 동의 체크박스 */
    .oi-chkall-wrap {
        padding: 15px;
        margin: 30px 0;
    }
    
    /* 입력 필드 패딩 조정 */
    .oi-form-list li {
        margin-bottom: 20px;
    }
    
    /* 파일 업로드 레이블 */
    .oi-file-label {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* 정보 카드 */
    .oi-info-card {
        padding: 20px;
    }
    
    /* 공지 카드 */
    .oi-notice-card {
        padding: 20px;
    }
    
    .oi-notice-card li {
        padding-left: 25px;
        font-size: 14px;
    }
    
    /* 토글 스위치 반응형 */
    .oi-toggle-switch {
        margin-bottom: 16px;
    }
    
    .oi-toggle-track {
        width: 46px;
        height: 24px;
    }
    
    .oi-toggle-track::before {
        width: 18px;
        height: 18px;
    }
    
    .oi-toggle-input:checked + .oi-toggle-label .oi-toggle-track::before {
        transform: translateX(22px);
    }
    
    .oi-toggle-text {
        font-size: 14px;
    }
    
    .oi-toggle-switch-primary {
        padding: 16px;
        margin: 24px 0 20px;
    }
    
    .oi-toggle-switch-primary .oi-toggle-text {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    /* 타이틀 크기 추가 축소 */
    .oi-register-title {
        font-size: 22px;
    }
    
    .oi-success-title {
        font-size: 24px;
    }
    
    /* 버튼 패딩 축소 */
    .oi-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* 체크박스 라벨 폰트 크기 */
    .oi-checkbox-label {
        font-size: 14px;
    }
    
    /* 성공 아이콘 크기 조정 */
    .oi-success-icon-container i {
        font-size: 50px;
    }
}

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    .oi-input,
    .oi-btn,
    .oi-checkbox label {
        min-height: 44px;
    }
    
    .oi-login-link {
        padding: 8px;
    }
}

/* =============================================
   Print Styles
   ============================================= */
@media print {
    /* 배경 제거 */
    .oi-register-wrapper,
    .oi-register-form-wrapper,
    .oi-register-result-wrapper {
        background: none !important;
    }
    
    .oi-register-overlay {
        display: none;
    }
    
    /* 컨테이너 스타일 단순화 */
    .oi-register-container,
    .oi-register-form-container,
    .oi-register-result-container {
        box-shadow: none;
        border: 1px solid #000;
        background: #fff !important;
    }
    
    /* 색상 조정 */
    .oi-register-title,
    .oi-success-title,
    .oi-section-title {
        color: #000 !important;
    }
    
    /* 버튼 숨기기 */
    .oi-button-group {
        display: none;
    }
    
    /* 체크박스 표시 개선 */
    .oi-checkbox:checked + .oi-checkbox-label .oi-checkbox-indicator::after {
        content: '✓';
        color: #000;
    }
}

/* =============================================
   Dark Mode Support (Optional)
   ============================================= */
@media (prefers-color-scheme: dark) {
    /* 기본적으로 밝은 테마를 유지하되, 
       필요시 다크모드 스타일을 여기에 추가할 수 있습니다 */
}

/* =============================================
   Additional Utility Classes
   ============================================= */

/* Focus Visible for Accessibility */
.oi-input:focus-visible,
.oi-textarea:focus-visible,
.oi-btn:focus-visible,
.oi-checkbox-label:focus-visible {
    outline: 3px solid #00a862;
    outline-offset: 2px;
}

/* Link Hover Effect */
.oi-login-link {
    position: relative;
}

.oi-login-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a862;
    transition: width 0.3s ease;
}

.oi-login-link:hover::after {
    width: 100%;
}

/* Button Loading State */
.oi-btn-login.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.oi-btn-login.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #0a0e1a;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

/* Input Success State */
.oi-input.success {
    border-color: #00a862;
    background-color: #f0fdf8;
}

/* Progress Bar */
.oi-progress-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 20px 0;
    overflow: hidden;
}

.oi-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00a862 0%, #0AD681 100%);
    transition: width 0.3s ease;
}

/* Tooltip */
.oi-tooltip {
    position: relative;
    display: inline-block;
}

.oi-tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #1e293b;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
}

.oi-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
}

.oi-tooltip:hover .oi-tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* File Upload Enhancement */
.oi-file-upload input[type="file"] {
    position: absolute;
    left: -9999px;
}

.oi-file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.oi-file-upload-label:hover {
    background: #f8fafc;
    border-color: #00a862;
    color: #00a862;
}

.oi-file-upload.has-file .oi-file-upload-label {
    background: #f0fdf8;
    border-color: #00a862;
    border-style: solid;
    color: #00a862;
}

/* Referral Notice Styles */
.oi-referral-notice {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid;
    backdrop-filter: blur(10px);
}

.oi-referral-notice i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.oi-referral-notice strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.oi-referral-notice p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Success Style */
.oi-referral-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.oi-referral-success i {
    color: #10b981;
}

.oi-referral-success strong:last-of-type {
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Error Style */
.oi-referral-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.oi-referral-error i {
    color: #ef4444;
}

/* Disabled Button Style */
.oi-btn:disabled,
.oi-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.oi-btn:disabled:hover,
.oi-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* =============================================
   Phone Input with Country Code (2025-07-02)
   ============================================= */
/* Ensure dropdown is not clipped by parent containers */
.oi-form-section {
    position: relative;
}

.oi-form-list li {
    position: relative;
    overflow: visible !important;
}

.phone-input-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    position: relative;
}

.country-search-container {
    position: relative;
    width: 140px;
}

.country-search-input {
    width: 100%;
    cursor: pointer;
    position: relative;
}

.country-search-input.oi-input {
    /* oi-input 클래스의 기본 스타일을 상속 */
    padding-right: 35px !important;
    padding-left: 50px !important;
}

.country-dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-secondary);
    font-size: 12px;
}

.country-dropdown {
    display: none;
    position: fixed;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    max-height: 400px;
    overflow: hidden;
}

.country-dropdown.show {
    display: block;
}

.country-search-box {
    padding: 8px;
    border-bottom: 1px solid var(--border-light);
}

.country-search-box input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 13px;
}

.country-list {
    max-height: 340px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}

.country-list::-webkit-scrollbar {
    width: 6px;
}

.country-list::-webkit-scrollbar-track {
    background: transparent;
}

.country-list::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

.country-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.country-item:hover {
    background-color: var(--bg-light);
}

.country-item.selected {
    background-color: var(--primary-green);
    color: white;
}

.country-flag {
    width: 24px;
    height: 18px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 2px;
}

.country-name {
    flex: 1;
    font-size: 13px;
}

.country-code {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: 8px;
}

.country-item.selected .country-code {
    color: rgba(255, 255, 255, 0.8);
}

/* 국가 정보 그룹 */
.country-info {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}

.country-region-header {
    padding: 8px 12px;
    background: var(--bg-lighter);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark-theme .country-region-header {
    background: var(--bg-input-dark);
    color: var(--text-light);
}

/* 국기 이미지 스타일 */
.country-flag-img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

.country-flag-emoji {
    font-size: 18px;
    line-height: 1;
}

/* 직접 입력 아이템 */
.country-item.custom-input {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 4px;
}

.country-item.custom-input:hover {
    background-color: var(--bg-lighter);
}

/* 직접 입력 모달 */
.custom-country-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.custom-country-modal .modal-content {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    width: 90%;
}

.custom-country-modal h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: var(--text-primary);
}

.custom-country-modal input {
    width: 100%;
    margin-bottom: 20px;
}

.custom-country-modal .modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.dark-theme .custom-country-modal .modal-content {
    background: var(--bg-card-dark);
    color: var(--text-white);
}

.phone-number-input {
    flex: 1;
}

/* Dark theme support */
.dark-theme .country-search-input,
.dark-theme .country-dropdown {
    background: var(--bg-input-dark);
    border-color: #444;
    color: var(--text-white);
}

.dark-theme .country-dropdown {
    background: var(--bg-card-dark);
}

.dark-theme .country-item:hover {
    background-color: var(--bg-input-dark);
}

.dark-theme .country-search-box input {
    background: var(--bg-input-dark);
    border-color: #444;
    color: var(--text-white);
}

/* =============================================
   End of Stylesheet
   ============================================= */