/**
	member skin css
*/
body, html {
        margin: 0; padding: 0; width: 100%; height: 100%;
        background: radial-gradient(circle at center, #2c3e50 0%, #000000 100%);
        overflow: hidden; font-family: 'Noto Sans KR', sans-serif;
    }
.access .panel-footer{overflow:hidden;}
.search form{padding:20px;}
.search textarea {padding: 15px;background: #f7f7f7;font-size: 12px;}
.final .btn_final{margin-top:20px; text-align:center;}

.pin-container {
        position: fixed; top: 45%; left: 50%; transform: translate(-50%, -50%);
        z-index: 100; text-align: center; width: 100%; max-width: 400px; color: #fff;
    }
.pin-logo { font-size: 32px; font-weight: 900; color: #d4af37; margin-bottom: 10px; letter-spacing: 2px; }
.pin-title { font-size: 16px; font-weight: 300; margin-bottom: 20px; color: #ccc; }

/* PIN 도트 스타일 */
.pin-dots { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.dot { width: 15px; height: 15px; border: 2px solid #d4af37; border-radius: 50%; transition: all 0.2s; }
.dot.active { background-color: #d4af37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }

/* 랜덤 키패드 그리드 */
.keypad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding: 0 30px; }
.key {
    height: 70px; display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 500; background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 15px; cursor: pointer; transition: 0.2s;
}
.key:active { background: rgba(212, 175, 55, 0.2); transform: scale(0.95); border-color: #d4af37; }
.key.backspace { color: #ff4444; } /* 삭제 버튼 강조 */
.key.empty { background: none; border: none; cursor: default; }

.access {
        float: none !important;
        margin: 0 auto !important;
    }

    .panel-default {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    /* 상단 헤더 */
    .panel-heading {
        background: rgba(212, 175, 55, 0.1) !important;
        color: #d4af37 !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        padding: 20px !important;
        letter-spacing: 2px;
    }

    /* 입력 필드 레이블 */
    .control-label {
        color: #ccc !important;
        font-weight: 400;
    }

    /* 입력창(Input) 디자인 */
    .form-control {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        border-radius: 8px !important;
        height: 45px !important;
        transition: all 0.3s;
    }

    .form-control:focus {
        border-color: #d4af37 !important;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
        outline: none;
    }

    /* 로그인 버튼 */
    .btn-primary {
        background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
        border: none !important;
        color: #000 !important;
        font-weight: 700 !important;
        height: 45px;
        width: 100%;
        border-radius: 8px !important;
        transition: 0.3s;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

    /* 하단 푸터 및 링크 */
    .panel-footer {
        background: rgba(0, 0, 0, 0.2) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding: 15px 20px !important;
    }

    .panel-footer a {
        color: #888 !important;
        font-size: 13px;
        transition: 0.3s;
    }

    .panel-footer a:hover {
        color: #d4af37 !important;
        text-decoration: none;
    }

    /* 체크박스 디자인 */
    #autologin {
        accent-color: #d4af37;
    }
    label[for="autologin"] {
        color: #888;
        font-weight: 400;
        cursor: pointer;
    }

    /* 알림창 디자인 */
    .autologinalert {
        background: rgba(212, 175, 55, 0.1) !important;
        border: 1px solid #d4af37 !important;
        color: #d4af37 !important;
        font-size: 12px;
        margin-top: 20px;
    }
