@charset "utf-8";

/**
 * 광주교육대학교 복지포털 로그인 페이지
 * Description: 현대적인 좌우 분할 로그인 디자인 (녹색 테마)
 * @author 김용길
 * @since 2025-10-15
 * @version 3.0
 */
 
 
@import url("/css/layout/font.css");
@import url("/css/layout/webfont/xeicon/xeicon.css"); /* 아이콘폰트1 */
@import url("/css/layout/webfont/xeicon/xeicon.min.css"); /* 아이콘폰트2 */

/* ========================================
   1. CSS Reset & Base
======================================== */

/* Body 완전 리셋 */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow-x: hidden !important;
	font-weight:500;
    font-family:var(--font-family-common) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 기본 요소 리셋 */
* {
    box-sizing: border-box;
	font-family:var(--font-family-common);
}

/* ========================================
   2. CSS Variables (녹색 테마)
======================================== */

:root {
    /* Primary Colors - 녹색 테마 */
    --primary-color: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    --primary-gradient-start: #22c55e;
    --primary-gradient-end: #16a34a;

    /* Grayscale */
    --white: #ffffff;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Functional Colors */
    --success-color: #10B981;
    --error-color: #EF4444;
    --warning-color: #F59E0B;

    /* Borders & Shadows */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.10);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	
	/* 폰트타입 */
	--font-family-common:'paper','sb-font','gong-light', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* ========================================
   3. Login Wrapper (Full Screen)
======================================== */

.login-wrapper {
    display: flex !important;
    min-height: 100vh !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--white) !important;
    position: relative !important;
}

/* ========================================
   4. Left Brand Section (50%)
======================================== */

.login-brand-section {
    flex: 1.5 !important; /* 60% 차지 (기존 50%에서 증가) */
    min-height: 100vh !important;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 60px !important;
    position: relative !important;
    overflow: hidden !important;
}

.brand-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 100%; /* 영역 전체 활용 (기존 500px 제한 제거) */
    width: 100%;
}

/* 배너 슬라이더 */
.banner-slider {
    width: 100%;
    max-width: 100%; /* 영역 전체 활용 (기존 500px 제한 제거) */
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 400px; /* 더 크게 표시 (기존 300px → 400px) */
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px; /* 더 크게 표시 (기존 300px → 400px) */
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.banner-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 배너 로딩 표시 */
.banner-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: rgba(255, 255, 255, 0.8);
    gap: 12px;
}

.banner-loading i {
    font-size: 48px;
}

.banner-loading p {
    font-size: 14px;
    margin: 0;
}

/* 기본 배너 (데이터 없을 때) */
.default-banner {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-banner-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    padding: 40px;
}

.default-banner-content i {
    margin-bottom: 20px;
    opacity: 0.9;
}

.default-banner-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.default-banner-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

/* 빈 배너 플레이스홀더 (이미지 로드 실패 시) */
.empty-banner-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 40px;
    border-radius: 14px;
}

.empty-banner-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    animation: pulse-subtle 2s ease-in-out infinite;
}

.empty-banner-icon i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.empty-banner-text {
    text-align: center;
}

.empty-banner-title {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.empty-banner-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 400;
}

/* 부드러운 펄스 애니메이션 */
@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
}

.brand-title {
    font-size: 32px;
    font-weight:600;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    color: var(--white);
}

.brand-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0 0 40px 0;
    color: var(--white);
}

/* 슬라이더 페이지네이션 */
.slider-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* 장식 요소 - 제거됨 (타이틀을 가려서 불편함) */

/* ========================================
   5. Right Form Section (50%)
======================================== */

.login-form-section {
    flex: 1 !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 60px !important;
    background: var(--white) !important;
}

.login-form-container {
    width: 100%;
    max-width: 440px;
    padding: 0;
}

/* ========================================
   6. Login Header
======================================== */

.login-header {
    margin-bottom: 40px;
    text-align: center;
}

.header-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px 0;
}

.login-subtitle {
    color: var(--gray-600);
    font-size: 16px;
    margin: 0;
}

/* ========================================
   7. Form Elements
======================================== */

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

/* Input Group */
.input-group {
    position: relative;
}

.input-group .form-control {
    padding-left: 48px;
    padding-right: 48px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    z-index: 10;
    font-size: 16px;
    transition: var(--transition);
}

.input-group:focus-within .input-icon {
    color: var(--primary-color);
}

/* Form Control */
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    background-color: var(--gray-50);
    color: var(--gray-800);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    background-color: var(--white);
}

.form-control::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

/* Validation Icons */
.validation-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.validation-icon.show-success {
    opacity: 1;
    color: var(--primary-color);
}

.validation-icon.show-error {
    opacity: 1;
    color: var(--error-color);
}

/* Validation States */
.form-control.is-invalid {
    border-color: var(--error-color) !important;
    background-color: rgba(239, 68, 68, 0.05) !important;
}

.form-control.is-valid {
    border-color: var(--primary-color) !important;
    background-color: rgba(34, 197, 94, 0.05) !important;
}

/* Error Message */
.error-message {
    display: block;
    color: var(--error-color);
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   8. Form Options (아이디 저장 & 찾기)
======================================== */

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.form-check-label {
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
}

.find-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.find-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ========================================
   9. Login Button
======================================== */

.btn-login {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

/* Loading State */
.btn-login.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-login.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   10. Login Footer
======================================== */

.login-footer {
    margin-top: 24px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
}

.footer-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link i {
    font-size: 12px;
}

.divider {
    color: var(--gray-300);
    font-size: 14px;
}

.copyright {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 16px;
}

/* ========================================
   11. Responsive Design
======================================== */

/* Tablet (1024px 이하) */
@media (max-width: 1024px) {
    .login-wrapper {
        flex-direction: column !important;
    }

    .login-brand-section {
        min-height: 40vh !important;
        padding: 40px 30px !important;
    }

    .banner-slider {
        max-width: 100%; /* 태블릿에서도 전체 너비 활용 */
        margin-bottom: 30px;
        min-height: 300px; /* 약간 더 크게 (기존 250px → 300px) */
    }

    .banner-slides {
        min-height: 300px; /* 약간 더 크게 (기존 250px → 300px) */
    }

    .brand-title {
        font-size: 28px;
    }

    .brand-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .slider-pagination {
        margin-top: 30px;
    }

    .login-form-section {
        min-height: 60vh !important;
        padding: 40px 30px !important;
    }
}

/* Mobile (640px 이하) */
@media (max-width: 640px) {
    .login-brand-section {
        min-height: 35vh !important;
        padding: 30px 20px !important;
    }

    .banner-slider {
        max-width: 100%;
        margin-bottom: 20px;
        min-height: 250px; /* 약간 더 크게 (기존 200px → 250px) */
    }

    .banner-slides {
        min-height: 250px; /* 약간 더 크게 (기존 200px → 250px) */
    }

    .banner-loading {
        height: 250px; /* 약간 더 크게 (기존 200px → 250px) */
    }

    .default-banner-content {
        padding: 30px 20px;
    }

    .default-banner-content i {
        font-size: 40px;
    }

    .default-banner-content h2 {
        font-size: 22px;
    }

    .default-banner-content p {
        font-size: 14px;
    }

    .brand-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .brand-description {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .slider-pagination {
        margin-top: 24px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .login-form-section {
        min-height: 65vh !important;
        padding: 30px 20px !important;
    }

    .login-form-container {
        max-width: 100%;
    }

    .header-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .login-title {
        font-size: 22px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .divider {
        display: none;
    }
}

/* ========================================
   12. Accessibility
======================================== */

.btn-login:focus,
.form-control:focus,
.footer-link:focus,
.find-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========================================
   13. 공지사항 전체 영역
======================================== */

/* 왼쪽 공지사항 전체 영역 - 녹색 그라디언트 */
.login-notice-area {
    flex: 1 !important;
    min-height: 100vh !important;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    border-right: none;
}

/* 상단 헤더 */
.notice-area-header {
    padding: 32px 40px;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.notice-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.notice-header-title i {
    font-size: 24px;
    color: var(--white);
}

.notice-header-title span {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.notice-header-desc {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 36px;
}

/* 공지사항 목록 영역 - 전체 높이 */
.notice-area-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: transparent;
}

.notice-area-body::-webkit-scrollbar {
    width: 8px;
}

.notice-area-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.notice-area-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.notice-area-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* 공지사항 아이템 - 카드 스타일 */
.notice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    margin-bottom: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.notice-item:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.15);
    border-color: #86efac;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.notice-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-item:hover .notice-title {
    color: var(--primary-color);
}

.notice-new-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: var(--error-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

.notice-date {
    font-size: 13px;
    color: var(--gray-400);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 16px;
}

/* 하단 브랜드 정보 */
.notice-brand-info {
    padding: 24px 40px;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.notice-brand-info .brand-slogan {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.3px;
}

/* 로딩 상태 */
.notice-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.9);
}

.notice-loading i {
    font-size: 24px;
    color: var(--white);
}

.notice-loading span {
    font-size: 14px;
}

/* 빈 상태 */
.notice-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.8);
}

.notice-empty i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.notice-empty span {
    font-size: 14px;
}

/* ========================================
   14. 공지사항 상세 모달
======================================== */

.notice-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.notice-modal {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notice-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    border-radius: 16px 16px 0 0;
}

.notice-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    padding-right: 24px;
    word-break: break-word;
}

.notice-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notice-modal-close:hover {
    background: var(--gray-300);
    transform: rotate(90deg);
}

.notice-modal-close i {
    font-size: 16px;
    color: var(--gray-600);
}

.notice-modal-meta {
    display: flex;
    gap: 20px;
    padding: 16px 28px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.notice-modal-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-600);
}

.notice-modal-meta i {
    color: var(--gray-400);
    font-size: 12px;
}

.notice-modal-body {
    flex: 1;
    padding: 28px;
    overflow-y: auto;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-800);
}

.notice-modal-body p {
    margin-bottom: 16px;
}

.notice-modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.notice-modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 16px 28px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    border-radius: 0 0 16px 16px;
}

.btn-modal-close {
    padding: 10px 24px;
    background: var(--gray-600);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-modal-close:hover {
    background: var(--gray-700);
}

/* ========================================
   15. 공지사항 반응형
======================================== */

@media (max-width: 1024px) {
    .login-wrapper {
        flex-direction: column !important;
    }

    .login-notice-area {
        min-height: auto !important;
        max-height: 50vh;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .login-form-section {
        min-height: auto !important;
        padding: 40px 20px !important;
    }
}

@media (max-width: 640px) {
    .notice-area-header {
        padding: 20px 24px;
    }

    .notice-header-title i {
        font-size: 20px;
    }

    .notice-header-title span {
        font-size: 20px;
    }

    .notice-header-desc {
        padding-left: 32px;
        font-size: 13px;
    }

    .notice-item {
        padding: 16px 24px;
    }

    .notice-title {
        font-size: 14px;
    }

    .notice-date {
        font-size: 12px;
    }

    .notice-area-footer {
        padding: 16px 24px;
    }

    .notice-modal {
        max-height: 90vh;
    }

    .notice-modal-header {
        padding: 20px;
    }

    .notice-modal-header h3 {
        font-size: 18px;
    }

    .notice-modal-body {
        padding: 20px;
    }

    .notice-modal-footer {
        padding: 14px 20px;
    }
}
