/**
 * HC Login Pro - 접근성 및 인쇄 스타일
 * 
 * File: accessibility.css
 * Location: /wp-content/plugins/hc-login-pro/assets/css/utilities/
 */

/* 포커스 스타일 */
.hc-btn:focus-visible,
.hc-form-input:focus-visible,
.hc-form-select:focus-visible,
.hc-form-textarea:focus-visible,
.hc-link:focus-visible {
    outline: 2px solid var(--hc-border-focus);
    outline-offset: 2px;
}

/* 고대비 모드 지원 */
@media (prefers-contrast: high) {
    .hc-form-input,
    .hc-form-select,
    .hc-form-textarea {
        border-width: 2px;
    }
    
    .hc-btn-outline {
        border-width: 3px;
    }
    
    .hc-notice {
        border-width: 2px;
    }
}



/* 인쇄 스타일 */
@media print {
    .hc-btn,
    .hc-form-links {
        display: none !important;
    }
    
    .hc-form-wrapper {
        box-shadow: none;
        border: 1px solid #000;
        background: white !important;
        color: black !important;
    }
    
    .hc-form-input,
    .hc-form-select,
    .hc-form-textarea {
        background: white !important;
        color: black !important;
        border: 1px solid #000 !important;
    }
    
    .hc-notice {
        background: white !important;
        color: black !important;
        border: 1px solid #000 !important;
    }
}
