.find-account-area {
    max-width: 400px; /* 카드 크기를 약간 줄여 더 집중되게 만듭니다. */
    margin: 3rem auto;
    padding: 0 1rem; /* 모바일 대응 */
}

.find-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* 그림자 강화 */
    width: 40rem;
    height: 25rem;
    margin-left: -10rem;
    margin-top: 10rem;
}

.find-card h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
    font-weight: 700;
}

.find-form .form-row {
    margin-bottom: 1.5rem;
    position: relative;
    /* label은 HTML에서 제거하여 깔끔하게 인풋만 남깁니다. */
}

/* 아이콘 포함 인풋 스타일 */
.input-with-icon {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px; /* 둥근 모서리 */
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #f9f9f9;
}

.input-with-icon:focus-within {
    border-color: #6a5acd; /* 포커스 시 보라색 테두리 */
    box-shadow: 0 0 0 2px rgba(106, 90, 205, 0.2);
}

.input-with-icon .icon {
    color: #888;
    font-size: 1.1rem;
    padding: 0 0.8rem;
}

.find-form .form-row input {
    flex-grow: 1;
    padding: 0.8rem 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
}

/* 버튼 스타일 */
.btn-primary.full {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background-color: #6a5acd; /* 메인 색상: 보라색 계열 */
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 1rem;
}

.btn-primary.full:hover {
    background-color: #5d4bb3;
}

.btn-primary.full:active {
    transform: translateY(1px);
}

/* 결과 버튼 컨테이너 */
.result-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem; /* 버튼 사이 간격 */
    margin-top: 1rem;
}

/* 공통 버튼 스타일 */
.result-buttons a,
.result-buttons button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s, transform 0.1s;
}

/* 보라색 메인 버튼 */
.result-buttons .btn-primary {
    background-color: #6a5acd;
    color: #fff;
    border: none;
}

.result-buttons .btn-primary:hover {
    background-color: #5d4bb3;
}

.result-buttons .btn-primary:active {
    transform: translateY(1px);
}

/* 회색/보조 버튼 */
.result-buttons .btn-secondary {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ccc;
}

.result-buttons .btn-secondary:hover {
    background-color: #e2e2e2;
}
