/* 아이디/비번찾기 페이지 스타일 */
.sub-visual {
    position: relative;
    height: 300px;
    background-color: #333;
    overflow: hidden;
}

.sub-visual-bg {
    position: relative;
    height: 100%;
    background-image: url('images/sub/sub_title_bg04.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.sub-visual-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.sub-visual-bg h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sub-visual-bg p {
    font-size: 18px;
    opacity: 0.8;
}

/* 서브 메뉴 */
.sub-menu {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.sub-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sub-menu ul li {
    position: relative;
}

.sub-menu ul li a {
    display: block;
    padding: 20px 30px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.sub-menu ul li.active a {
    color: #0056b3;
    font-weight: 700;
}

.sub-menu ul li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #0056b3;
}

.sub-menu ul li a:hover {
    color: #0056b3;
}

.find-section {
    padding: 60px 0;
    background-color: #fff;
}

.find-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.find-description {
    text-align: center;
    margin-bottom: 40px;
}

.find-description p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.find-id-section,
.find-pw-section {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.find-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.find-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.find-form {
    max-width: 500px;
    margin: 0 auto;
}

.find-form .form-group {
    margin-bottom: 15px;
}

.find-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.find-form input[type="text"],
.find-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s;
}

.find-form input[type="text"]:focus,
.find-form input[type="email"]:focus {
    border-color: #0056b3;
    outline: none;
}

.form-buttons {
    margin-top: 20px;
    text-align: center;
}

.btn-submit {
    padding: 12px 40px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #004494;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .sub-menu ul {
        flex-wrap: wrap;
    }
    
    .sub-menu ul li {
        margin: 5px 10px;
    }
    
    .find-id-section,
    .find-pw-section {
        padding: 20px;
    }
    
    .find-form {
        max-width: 100%;
    }
    
    .btn-submit {
        width: 100%;
    }
} 