/**
 * HC Login Pro - 모던 템플릿
 * 현대적이고 미니멀한 디자인
 * 
 * File: modern.css
 */

.hc-template-modern {
    --hc-primary: #6366f1;
    --hc-primary-hover: #4f46e5;
    --hc-primary-light: rgba(99, 102, 241, 0.1);
    --hc-secondary: #8b5cf6;
    --hc-bg-primary: #ffffff;
    --hc-bg-secondary: #fafafa;
    --hc-text-primary: #18181b;
    --hc-text-secondary: #71717a;
    --hc-border: #e4e4e7;
    --hc-border-focus: #6366f1;
    --hc-radius-lg: 12px;
    --hc-radius-xl: 20px;
}

.hc-template-modern.hc-form-wrapper {
    background: var(--hc-bg-primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: none;
}

.hc-template-modern .hc-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hc-template-modern .hc-form-label {
    font-weight: 500;
    color: var(--hc-text-secondary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.hc-template-modern .hc-form-input {
    border-radius: var(--hc-radius-lg);
    border: 2px solid var(--hc-border);
    background: var(--hc-bg-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hc-template-modern .hc-form-input:hover {
    border-color: #a5b4fc;
}

.hc-template-modern .hc-form-input:focus {
    background: var(--hc-bg-primary);
    border-color: var(--hc-primary);
    box-shadow: 0 0 0 4px var(--hc-primary-light);
}

.hc-template-modern .hc-btn-primary {
    background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-secondary) 100%);
    border: none;
    border-radius: var(--hc-radius-lg);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hc-template-modern .hc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.4);
}

.hc-template-modern .hc-btn-primary:active {
    transform: translateY(-1px);
}

.hc-template-modern .hc-checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
}

.hc-template-modern .hc-form-links {
    border-top: none;
    background: var(--hc-bg-secondary);
    margin: var(--hc-space-6) calc(var(--hc-space-8) * -1) calc(var(--hc-space-8) * -1);
    padding: var(--hc-space-5) var(--hc-space-8);
    border-radius: 0 0 var(--hc-radius-xl) var(--hc-radius-xl);
}

.hc-template-modern .hc-link {
    font-weight: 600;
    background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hc-template-modern .hc-link:hover {
    text-decoration: none;
    opacity: 0.8;
}
