/* 공통 스타일 */
.find-container {
    font-family: "Noto Sans KR", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.find-box {
    width: 400px;
    background: white;
    padding: 30px;
    box-shadow: 0 0 5px rgba(125, 90, 158, 0.5);
    text-align: center;
    border-radius: 6px;
}

.find-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.find-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

.find-button {
    width: 100%;
    background-color: #7D5A9E;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.find-button:hover {
    background-color: #6A4B85;
}

.help-links {
    margin-top: 15px;
}

.help-links a {
    text-decoration: none;
    color: #7D5A9E;
    font-size: 14px;
}

.help-links a:hover {
    text-decoration: underline; 
}
