@charset "UTF-8";

body {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: 100vh;
}

.find-password-background {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    background-color: transparent;
}

.find-password-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    min-width: 450px;
    max-width: 600px;
    padding: 2.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

/* 로고 섹션
================================================== */
.logo-link {
    display: block;
    margin-bottom: 2rem;
    width: 150px;
    height: auto;
}

.logo-image {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 공통 스타일
================================================== */
/* input 스타일 */
.find-password-form input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fcfcfc;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    appearance: none;
}

/* 작성 폼 섹션
================================================== */
.find-password-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* placeholder 스타일 */
.find-password-form input::placeholder {
    color: #b0b0b0;
}

/* focus 시 스타일 */
.find-password-form input:focus {
    border-color: #5A67D8;
    box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.15);
    outline: none;
}

/* 설명 섹션 */
.auth-method-description {
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f0f8ff;
    border: 1px solid #e0f2ff;
    border-radius: 8px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.auth-method-description p {
    margin: 0;
}

/* 입력 그룹 */
.input-group {
    width: 100%;
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin: 0.8rem 0 0.5rem 0;
    font-weight: 500;
}

/* 제출 버튼 */
.btn-submit {
    background-color: tomato;
    color: #fff;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 0;
    transition: background-color 0.2s ease;
}

/* 버튼 활성화 스타일 */
.btn-submit:hover:not(:disabled) {
    background-color: #CC4028;
}

/* 버튼 비활성화 스타일 */
.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* 하단 링크 섹션 */
.form-links {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

.form-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.form-links a:hover {
    color: #5A67D8;
    text-decoration: underline;
}

.form-links span {
    color: #ccc;
    font-size: 0.9rem;
}