/* 
   IEVE Custom Styles 
   에디터 전용 컴포넌트 및 커스텀 스타일 관리
*/

/* [컴포넌트] 컨퍼런스 등록 확인 안내 서비스 */
.ieve-reg-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px 80px 20px;
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
}

/* 헤더 섹션 */
.ieve-header {
    text-align: center;
    margin-bottom: 25px;
}
.ieve-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.4;
}
.ieve-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}
.ieve-highlight {
    color: #253dbe;
    font-weight: bold;
}

/* CTA 버튼 영역 */
.ieve-cta-area {
    text-align: center;
}
.btn-ieve-reg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #253dbe 0%, #1a2b8e 100%);
    color: #fff !important;
    font-size: 22px;
    font-weight: 700;
    padding: 22px 60px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 61, 190, 0.3);
    transition: all 0.3s ease;
}
.btn-ieve-reg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 61, 190, 0.4);
    background: linear-gradient(135deg, #304add 0%, #253dbe 100%);
    color: #fff !important;
    text-decoration: none;
}
.btn-ieve-reg i {
    margin-left: 12px;
    font-size: 24px;
    transition: margin-left 0.3s ease;
}
.btn-ieve-reg:hover i {
    margin-left: 18px;
}

/* 하단 안내 */
.ieve-note {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* 모바일 반응형 */
@media all and (max-width: 768px) {
    .ieve-reg-container { padding: 0 15px 40px; }
    .ieve-header h2 { font-size: 24px; }
    .ieve-header p { font-size: 15px; }
    .btn-ieve-reg { width: 100%; box-sizing: border-box; font-size: 18px; padding: 18px 0; }
}
