/* 아이디/비밀번호 찾기 전용 모던 스타일 */
.find-section {
    background-color: #f8fafc;
    padding: 80px 0;
    font-family: 'Noto Sans KR', sans-serif;
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.find-container {
    width: 100%;
    max-width: 480px;
    padding: 0 20px;
    box-sizing: border-box;
}

.find-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

/* 상단 탭 레이아웃 */
.find-tabs {
    display: flex;
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    text-align: center;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #334155;
}

/* 활성화된 탭 스타일 (학원 시그니처 블루) */
.tab-btn.active {
    background-color: #ffffff;
    color: #2460fa;
    border-bottom: 2px solid #2460fa;
    margin-bottom: -1px;
}

.find-body {
    padding: 40px 30px;
}

.find-descr {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 28px;
    text-align: center;
}

/* 폼 인풋 스타일 */
.find-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.find-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.find-form-group input {
    height: 52px;
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 15px;
    color: #334155;
    box-sizing: border-box;
    outline: none;
    transition: all 0.2s;
}

.find-form-group input:focus {
    border-color: #2460fa;
    box-shadow: 0 0 0 3px rgba(36, 96, 250, 0.1);
}

.find-form-group input::placeholder {
    color: #94a3b8;
    font-size: 14px;
}

/* 하단 버튼 제어 */
.find-btn-area {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-find-submit {
    flex: 2;
    background-color: #2460fa;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    height: 52px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-find-submit:hover {
    background-color: #1d4ed8;
}

.btn-find-cancel {
    flex: 1;
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    height: 52px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
}

.btn-find-cancel:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

/* 콘텐츠 숨김/표시 클래스 */
.find-panel {
    display: none;
}

.find-panel.active {
    display: block;
}