.reset-password-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
}

.reset-password-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.reset-password-header {
    margin-bottom: 2rem;
}

.reset-password-header h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.reset-password-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.reset-password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box; /* padding을 포함한 너비 */
}

.forgot-id-link {
    font-size: 0.9rem;
    color: #666;
    margin-top: -1rem; /* input 아래와 버튼 위 간격 조정 */
    margin-bottom: 1.5rem;
    text-align: right;
    width: 100%;
}

.forgot-id-link a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.confirm-button {
    width: 100%;
    padding: 0.75rem;
    background: #808080; /* 이미지의 버튼 색상에 맞춤 */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.confirm-button:hover {
    background: #696969;
} 